Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/login.pug

19 lines
605 B
Text
Raw Normal View History

extends layout
block content
2020-08-25 16:46:02 +02:00
div.card
form(action="/login" method="POST")
h1=__("login.title")
div.field
label(for="username")=__("username")+":"
input#username(type="text" name="username" required)
div.field
label(for="password")=__("password")+":"
input#password(type="password" name="password" required)
div.field
+submit(value=__("login.submit"))
div.field
2020-08-25 16:46:02 +02:00
a(href="/forget")
input(type="button" value=__("forgetPassword"))