-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
36 lines (31 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CRUD SIGNUP</title>
<link rel="stylesheet" href="crud.css">
</head>
<body>
<form id="sForm">
<label for="">First Name: </label>
<input type="text" placeholder="Please input your first name" class="sFormChildren" id="fName"><br>
<label for="">Last Name: </label>
<input type="text" placeholder="Please input your last name" class="sFormChildren" id="lName"><br>
<label for="">User Name: </label>
<input type="text" placeholder="Please input your user name" id="uName" class="sFormChildren" ><br>
<label for="">email:</label>
<input type="email" placeholder="Please input your email" id="mail" class="sFormChildren" ><br>
<label for="" style="margin-left: .6rem">Password: </label>
<input type="password" placeholder="Please input your preferred password" id="pWord" class="sFormChildren" ><br>
<label for="" style="margin-left: 1rem">Sex: </label>
<input type="text" placeholder="Please state your sex" id="sex" class="sFormChildren" ><br>
<label for="" style="margin-left: -3rem">Age:</label>
<input type="number" placeholder="Please input your age" id="age" class="sFormChildren" ><br><br>
<input type="submit" value="SIGN UP"><br><br>
</form>
<span id="span"><p>If you already have an account</p> <input type="submit" value="LOGIN" id="login"></span>
<script src="signup.js"></script>
</body>
</html>