1cf95af41e
This causes the mailbox to automatically reload the page every 60 seconds, without JavaScript. This also updates the base template data to include the full URL, and replaces the earlier "Path" field with a pre-split array of path components, which is more immediately useful to most templates given the limitations of string munging with text/template primitives.
15 lines
362 B
HTML
15 lines
362 B
HTML
{{template "head.html" .}}
|
|
|
|
<h1>alps</h1>
|
|
|
|
<form method="post" action="">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username"/>
|
|
<br><br>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" id="password"/>
|
|
<br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
|
|
{{template "foot.html"}}
|