login.tx 985 B

123456789101112131415161718192021222324
  1. <div id="login">
  2. : include "jsalert.tx";
  3. <div>
  4. <img id="logo" src="/img/icon/favicon.svg" style="float:left" /><span style="font-family:courier;font-size:2rem;">CMS Login</span>
  5. </div>
  6. <div id="spacer" style="clear: both;"><br /></div>
  7. <form method="POST" action="/auth">
  8. <input type="hidden" name="app" value="login" />
  9. <input type="hidden" name="to" value="<: $to :>" />
  10. Username<br />
  11. <div class="input-group">
  12. <label for="username">😎</span></label>
  13. <input required name="username" id="username" placeholder="AzureDiamond" value="" type="text" autofocus></input>
  14. </div>
  15. <br />
  16. Password<br />
  17. <div class="input-group">
  18. <label for="password">🔑</label>
  19. <input required name="password" id="password" placeholder="hunter2" value="" type="password"></input>
  20. </div>
  21. <br />
  22. <input type="submit" id="maximumGo" value="<: $btnmsg :>"></input>
  23. </form>
  24. </div>