-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathavailability.html
More file actions
65 lines (57 loc) · 3.04 KB
/
Copy pathavailability.html
File metadata and controls
65 lines (57 loc) · 3.04 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
<!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">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/coverShift.css">
<link rel="stylesheet" href="scheduleReq.html">
<script src="./js/discussion.js"></script>
<script src=js/main.js>
</script>
<title>forum</title>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card w3-left-align w3-large">
<a href="index.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Home</a>
<a href="coverShift.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Cover Shift</a>
</div>
</div>
<form action="/action_page.php">
<fieldset class="coverShift">
<legend>Availability</legend>
<p>Full Name:</p>
<input class="fullname" type="text" name="fullname" value="" required>
<p>Phone Number:</p>
<input class="phone" type="tel" id="phone" name="phone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" required> <br> Email:
<br>
<input class="email" type="email" id="email" pattern=".+@globex.com" required>
<p>When times can you work?</p>
<input type="checkbox" value="anytime"> Any time<br>
<input type="checkbox" value="fivetoseven"> 5 - 7<br>
<input type="checkbox" value="seventonine"> 7 - 9<br>
<input type="checkbox" value="ninetoeleven"> 9 - 11<br>
<p>What days you work?</p>
<input type="checkbox" value="anytime"> Any time<br>
<input type="checkbox" value="fivetoseven"> 5 - 7<br>
<input type="checkbox" value="seventonine"> 7 - 9<br>
<input type="checkbox" value="ninetoeleven"> 9 - 11<br>
<br>
<p>Comments</p>
<input type="text" value="">
<input class="shiftcoversubmit" type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>