Archived
1
0
Fork 0

Add locales to register

This commit is contained in:
Ethanell 2020-08-18 17:00:07 +02:00
parent 36d9da7c7c
commit 8b247c9eff
4 changed files with 24 additions and 19 deletions

View file

@ -21,9 +21,6 @@
},
"index": {
"welcome": "Welcome to Sandwiches Order Doua",
"department": "Department",
"firstName": "First name",
"lastName": "Last name",
"command": "Command",
"sandwich": "Sandwich",
"day": "Day",
@ -31,8 +28,16 @@
},
"login": {
"title": "Login",
"username": "Username",
"password": "Password",
"submit": "Login"
}
},
"register": {
"title": "Register",
"email": "Email",
"submit": "Register"
},
"firstName": "First name",
"lastName": "Last name",
"username": "Username",
"password": "Password",
"department": "Department"
}

View file

@ -6,17 +6,17 @@ block content
p=__("index.welcome")
form#command(action="/command" method="POST")
div.field
label(for="department")=__("index.department")+":"
label(for="department")=__("department")+":"
input#department(type="list" list="department-list" name="department" value=user ? user.DepartmentName : "" autocomplete="off" required)
datalist#department-list
each department in departments
option(value=department.name)
div.field
label(for="firstname")=__("index.firstName")+":"
label(for="firstname")=__("firstName")+":"
input#firstname(type="text" name="firstName" value=user ? user.firstName : "" required)
div.field
label(for="lastname")=__("index.lastName")+":"
label(for="lastname")=__("lastName")+":"
input#lastname(type="text" name="lastName" value=user ? user.lastName : "" required)
div#command1.command

View file

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

View file

@ -2,27 +2,27 @@ extends layout
block content
form.card(action="/register" method="POST")
h1 Register
h1=__("register.title")
div.field
label(for="username") Username:
label(for="username")=__("username")+":"
input#username(type="text" name="username" required)
div.field
label(for="email") Email:
label(for="email")=__("register.email")+":"
input#email(type="email" name="email" required)
div.field
label(for="firstName") First name:
label(for="firstName")=__("firstName")+":"
input#firstName(type="text" name="firstName" required)
div.field
label(for="lastName") Last name:
label(for="lastName")=__("lastName")+":"
input#lastName(type="text" name="lastName" required)
div.field
label(for="department") Department:
label(for="department")=__("department")+":"
input#department(type="list" list="department-list" name="department" required)
div.field
label(for="password") Password:
label(for="password")=__("password")+":"
input#password(type="password" name="password" required)
div.field
input(type="submit" value="Register")
input(type="submit" value=__("register.submit"))
datalist#department-list
each department in departments