-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreate.html
More file actions
92 lines (83 loc) · 3.15 KB
/
Create.html
File metadata and controls
92 lines (83 loc) · 3.15 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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="create.css"/>
<title>AgenSight - Sign Up</title>
<!-- CSS only -->
</head>
<body>
<div class="container">
<h1 class="form-title">Create Account</h1>
<form action="#">
<div class="main-user-info">
<div class="user-input-box">
<label for="fullname">Fullname</label>
<input type="text"
id="fullname"
name="fullname"
placeholder="Enter Fullname"
required/>
</div>
<div class="user-input-box">
<label for="username">Username</label>
<input type="text"
id="username"
name="Username"
placeholder="Enter Username"
required/>
</div>
<div class="user-input-box">
<label for="email">Email</label>
<input type="email"
id="email"
name="email"
placeholder="Enter Email"
required/>
</div>
<div class="user-input-box">
<label for="phoneNumber">Cellphone Number</label>
<input type="number"
id="number"
name="fullname"
placeholder="Enter Cellphone Number"
required/>
</div>
<div class="user-input-box">
<label for="password">Password</label>
<input type="password"
id="password"
name="Password"
placeholder="Enter Password"
required/>
</div>
<div class="user-input-box">
<label for="confirmPassword">Confirm Password</label>
<input type="password"
id="confirmpassword"
name="confirmPassword"
placeholder="Enter Confirm Password"
required/>
</div>
</div>
<div class="gender-details-box">
<!-- <span class="applicant-title">Are you a?</span> -->
<!-- <div class="applicant-category">
<input type="radio" name="gender" id="Applicant"
<label for="applicant">Applicant</label>
<input type="radio" name="gender" id="Employeer"
<label for="employeer">Employeer</label>
</div> -->
</div>
<div class="form-submit-btn">
<input type="submit" value="Register">
</div>
<div class="button-login">
<a class="loginBtn" href="index.html">Back to Log In</a>
</div>
</form>
</div>
</body>
</html>