-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.pug
26 lines (25 loc) · 1.25 KB
/
signup.pug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
extends base
block content
main.login-up-container.flex
div.container.flex#signup
form.flex(action="/auth/signup",method="post")#signup-form
div.name-container.flex
div.flex
span.label First name
span.label Last name
div.flex
input#name(type="text", name="firstname" placeholder="First name")
input#family(type="text", name="lastname" placeholder="Last name")
span.label Email
input(type="email", name="email" placeholder="Enter your email")
span.label Password
input(type="password", name="password" placeholder="Enter your password")
span.label Confirm Password
input(type="password", name="confirmPassword" placeholder="re-Enter your password")
span.alternate By signing up you are agree with our
a#reset(href="#") Terms
| and
a#reset(href="#") Privacy and Policy
input(type="submit", value="Create Account")
span.alternate Already have an account?
a#create(href="/user/signin") Sign in