-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
60 lines (59 loc) · 2.99 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>SignUpForm </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="modal-dialog text-center">
<div class="col-sm-8 main-section">
<div class="modal-content">
<div class="col-12 user-img">
<img src="img/face.png">
</div>
<form class="col-12" onsubmit="event.preventDefault();register();" autocomplete="off" >
<div class="form-group">
<label>Name</label>
<input type="text" class="input" id="name">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="input" id="email">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="input" id="password">
</div>
<div class="form-group">
<label for="sel1">Select Role</label>
<select class="form-control" id="role">
<option></option>
<option>Admin</option>
<option>Role Manager</option>
<option>Employee Manager</option>
<option>Employer Manager</option>
<option>Referral Amount Manager</option>
<option>Job Manager</option>
<option>Payout Manager</option>
<option>Invoice Manager</option>
</select>
</div>
<button type="submit" class="btn" id="submit">Register</button>
</form>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.12.0/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="js/firebasescript.js"></script>
<script src="js/dashboard.js"></script>
</body>
</html>