-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
53 lines (49 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BlogIt</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="./style.css" />
<!-- Iconscout CDN -->
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<!-- Google Fonts Montserrat -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Form starts here -->
<section class="form_section">
<div class="container form_section-container">
<h2>Sign Up</h2>
<div class="alert_message error">
<p>This is error message</p>
</div>
<form action="">
<input type="text" placeholder="First Name" />
<input type="text" placeholder="Last Name" />
<input type="text" placeholder="Username" />
<input type="email" placeholder="Email" />
<input type="password" placeholder="Create Password" />
<input type="password" placeholder="Confirm Password" />
<div class="form_control">
<label for="avatar">User Profile</label>
<input type="file" id="avatar" />
</div>
<button type="submit" class="btn">Sign Up</button>
<small
>Already have an account? <a href="signin.html">Sign In</a></small
>
</form>
</div>
</section>
<!-- Form ends here -->
</body>
</html>