login.html.tpl 1.2 KB

1234567891011121314151617181920212223242526272829
  1. {{ define "content" }}
  2. <div class="container">
  3. <h1 class="text-center karmen-title">
  4. <span class="glyphicon glyphicon-sunglasses"></span>
  5. karmen
  6. <small>Behind the scenes she is.</small>
  7. </h1>
  8. <div class="login">
  9. <form action="/login" method="post">
  10. <div class="form-group">
  11. <label for="username">Nome utente</label>
  12. <input type="text" class="form-control" id="username" name="username" placeholder="Nome utente" required autofocus="" />
  13. </div>
  14. <div class="form-group">
  15. <label for="password">Password</label>
  16. <input type="password" class="form-control" id="password" name="password" placeholder="Password" required />
  17. </div>
  18. <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
  19. </form>
  20. {{if .Options.Get "failed"}}
  21. <p class="text-center text-danger">Autenticazione fallita!</p>
  22. {{end}}
  23. <p class="text-center">Sviluppato con <span class="glyphicon glyphicon-heart" aria-hidden="true"></span> da <a href="https://github.com/remogatto">Andrea
  24. Fazzi</a> per il <a href="https://www.carducci-dante.gov.it">Liceo
  25. "Carducci-Dante"</a> di Trieste</p>
  26. </div>
  27. </div>
  28. {{ end }}