The backend for the AiteStory website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
780 B

7 years ago
  1. {{ define "content" }}
  2. <article>
  3. <h1>Login</h1>
  4. <form action="/user/login", method="POST">
  5. <p>Use your wiki.aiterp.net account.</p>
  6. <p class="danger">{{$.Error}}</p>
  7. <input placeholder="Username" name="username" type="text" value="{{$.UserName}}" {{if ne $.UserName ""}}autofocus{{end}} />
  8. <input placeholder="Password" name="password" type="password" {{if $.UserName}}autofocus{{end}} />
  9. <button type="submit">Submit</button>
  10. </form>
  11. </article>
  12. {{ end }}
  13. {{ define "menu" }}
  14. <a href="/"><h1>Aite RP</h1></a>
  15. <ul>
  16. <li><a href="/"><div class="mg-icon">&lt;</div><div class="mg-label">Back</div></a></li>
  17. </ul>
  18. {{ end }}
  19. {{ define "head" }}
  20. <link rel="stylesheet" href="/ui/css/form.css" />
  21. {{ end }}