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
2020-08-18 16:53:34 +02:00

13 lines
468 B
Text

extends layout
block content
form.card(action="/login" method="POST")
h1=__("login.title")
div.field
label(for="username")=__("login.username")+":"
input#username(type="text" name="username" required)
div.field
label(for="password")=__("login.password")+":"
input#password(type="password" name="password" required)
div.field
input(type="submit" value=__("login.submit"))