-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
40 lines (40 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Multiple Bloge Website</title>
<!-- CUSTOM STYLESHEET -->
<link rel="stylesheet" href="Css/style.css">
<link rel="stylesheet" href="Css/Responsive.css">
<!-- BOOTSTRAP CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- GOOGLE FONTS CDN -->
</head>
<body>
<section class="form__section">
<div class="container form__section-container">
<h2>Sign Up</h2>
<div class="alert__message error">
<p>This is an Error message</p>
</div>
<form action="" enctype="multipart/form-data">
<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="Config Password">
<div class="form__control">
<lable for="avatar">User Avatar</lable>
<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>
<!--================= END OF SIGNUP =================-->
<script src="Js/main.js"></script>
</body>
</html>