forked from salonishah01/AbolVani
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
41 lines (37 loc) · 1.42 KB
/
signup.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
<link rel="stylesheet" href="CSS/signup.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<img class="wave" src="Images/sign.png">
<div class="container">
<div class="img">
<img src="Images/undraw_web_browsing_p77h.svg">
</div>
<div id="login-box"></div>
<div class="left">
<h1>Sign up</h1>
<input type="text" name="username" placeholder="Username" required/>
<input type="text" name="email" placeholder="E-mail" required />
<input type="password" name="password" placeholder="Password" required/>
<input type="password" name="password2" placeholder="Retype password" required />
<input type="submit" name="signup_submit" value="Sign me up" />
</div>
<div class="right">
<span class="loginwith">Sign in with<br />social network</span>
<button class="social-signin facebook">Log in with facebook</button>
<button class="social-signin twitter">Log in with Twitter</button>
<button class="social-signin google">Log in with Google+</button>
</div>
<div class="or">OR</div>
</form>
</div>
</div>
<script type="text/javascript" src="dist/main.js"></script>
</body>
</html>