-
Notifications
You must be signed in to change notification settings - Fork 4
/
SignUpvWorker - Copy.php
57 lines (56 loc) · 2.49 KB
/
SignUpvWorker - Copy.php
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
<!DOCTYPE html>
<html>
<head>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<title>Sign-Up V-Help</title>
<style>
.heading{
font-weight:Bold;
text-align:center;
font-size:50px;
font-color:#748DA6;
}
form{
background-color: #9CB4CC;
margin-top:6em;
margin-left:20em;
margin-right:20em;
padding:30px;
box-shadow: 10px 10px 8px 10px #888888;
border-radius:15px;
}
label{
font-color:white;
}
</style>
</head>
<body>
<div class="heading">STAFF</div>
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" name="workeremail">
<div id="emailHelp" class="form-text">Enter your Email Id.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Name</label>
<input type="text" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Worker ID</label>
<input type="text" class="form-control" id="exampleInputUsername1" name="workerid">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" name="workerpass">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<br></br>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html