-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingup.htm
37 lines (33 loc) · 1.66 KB
/
singup.htm
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="Signupcss/SignupDesign.css"/>
<title>Signup Page</title>
<link rel="icon" href="Logincss/logo/logo.png" type="image/icon type">
</head>
<body>
<div id="registerpage">
<p class="txtcreate">CREATE AN ACCOUNT</p>
<input class="placeholder" type="text" placeholder="LAST NAME">
<br>
<input class="placeholder" type="text" placeholder="FIRST NAME">
<br>
<input class="placeholder" type ="text" placeholder="AGE">
<br>
<input class="placeholder" type ="text" placeholder="EMAIL">
<br>
<label class="txt">MALE</label> <input class="rdbtn" type="radio" id="male" name="gender" value="male">
<label class="txt">FEMALE</label> <input class="rdbtn" type="radio" id="female" name="gender" value="female">
<br> <br>
<label class="txt">BIRTHDAY</label>
<input class="birthday" type="date" name="Birth-date" placeholder="Birth-date MM/DD/YY">
<br><br>
<input class="placeholder" id="createusername" type="text" placeholder="CREATE YOUR OWN USERNAME">
<br>
<input class="placeholder" id="createpassword" type="password" placeholder="CREATE YOUR OWN PASSSORD">
<br>
<button class="btnregister" type="submit" onclick="register()">Register</button>
</div>
<script src="script.js"></script>
</body>
</html>