SVNからのミラー

This commit is contained in:
2026-01-21 03:36:58 +09:00
commit 965aae7f57
26 changed files with 1101 additions and 0 deletions

26
view/index.html Normal file
View File

@@ -0,0 +1,26 @@
{{template "header" .}}
<div class="form">
<form action="/" method="POST">
<select class="langchange" name="lang">
<option value="ja"{{if eq .Lan "ja"}} selected{{end}}>日本語</option>
<option value="en"{{if eq .Lan "en"}} selected{{end}}>English</option>
</select>
<input
class="langchange"
type="submit"
name="langchange"
value="{{.T "langchange"}}"
/>
</form>
</div>
<hr />
{{.T "enterurl"}}
<div class="form">
<form action="/" method="POST">
<input type="text" name="newadd" value="" />
<div class="submit">
<input type="submit" name="sosin" value="{{.T "submit"}}" />
</div>
</form>
</div>
{{template "footer" .}}