forked from Abhinav068/Beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sigup.html
39 lines (29 loc) · 1.34 KB
/
sigup.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
<!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">
<link rel="stylesheet" href="Css_login_signup\middle.css">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<title>signin</title>
</head>
<body>
<div id="register">
<h1>Create your Account</h1>
<form action="login.html">
<input type="name" name="" id="firstname" placeholder=' your first name '><br>
<input type="name" name="" id="lastname" placeholder=' your last name '><br>
<input type="email" name="" id="email" placeholder=' your email '><br>
<input type="password" name="" id="password"placeholder=' your password ' autocomplete="on"><br>
<input type="checkbox" class="gender" value="male" >
<label for="">Male</label>
<input type="checkbox" class="gender" value="female" >
<label for="">Female</label><br>
<input type="submit" name="signin" id="signin" value="register">
</form> <br>
<a id="acc" href="login.html">➡ click here if you already have an account</a>
</div>
</body>
</html>
<script src="Script_login_signup\signup.js"></script>