-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignupPage.html
More file actions
38 lines (34 loc) · 1.94 KB
/
Copy pathSignupPage.html
File metadata and controls
38 lines (34 loc) · 1.94 KB
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
<html>
<head>
<link href="SignupPage.css" rel= "stylesheet" type= "text/css" >
<title>CREATE NEW ACCOUNT</title>
</head>
<body style ="background-color: #f2f6ff;">
<form id="register-form" method="POST">
<h1 style="text-align: center; font-size: 40px; font-family: andalus;">REGISTER</h1>
<div style="width :100%; height :120px; background-color: #f2f6ff;">
<span><img src="https://image.flaticon.com/icons/png/512/2702/2702602.png"
alt="google logo" id="topbar-icon" /></span>
<span><img src="https://cdn3.iconfinder.com/data/icons/capsocial-round/500/facebook-512.png" alt="facebook icon" id="topbar-icon" /></span>
<span><img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-social-github-256.png" alt="github icon" id="topbar-icon" /></span>
<span><img src="https://cdn2.iconfinder.com/data/icons/social-18/512/LinkedIn-256.png" alt="linkedin icon" id="topbar-icon" /></span>
</div>
<div class="form-fill">
<input id="box-input" type="text" name="username" placeholder="Username" required autofocus >
</div>
<div class="form-fill">
<input id="box-input" type="email" name="Email" placeholder="Email" required >
</div>
<div class="form-fill">
<input id="box-input" type="password" name="password" placeholder="Password" required >
</div>
<div class="form-fill">
<input id="box-input" type="password" name="confirm-password" placeholder="Confirm Password" required >
</div>
<div class="but-style">
<input id="reg-but" type="button" name="Register" value="Register">
<input id="reg-but" type="reset" name="Reset" value="Reset">
</div>
</form>
</body>
</html>