-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvcode.html
More file actions
44 lines (41 loc) · 1.11 KB
/
vcode.html
File metadata and controls
44 lines (41 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Volunteer Code Entry</title>
<link rel="stylesheet" href="website.css" type="text/css">
</head>
<body>
<div id="wrapper">
<header></header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="userReg.html">User Registration</a></li>
<li><a href="adminReg.html">Administrator Registration</a></li>
<li><a href="pet.html">Chari-Pet</a></li>
<li><a href="leaderboard.html">Leaderboard</a></li>
<li><a href="vcode.html">Enter Volunteer Codes</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<br>
<br>
<div class="code">
<p> Enter Your Volunteer Codes Here!</p>
<form name="login" action="submit" method="get">
<label for="code">Code: </label>
<input type="text" id="code" name="code">
<a href="pet2.html">
<button>Submit</button>
</a>
</form>
</div>
<br><footer>
The Rising Forest ©2016
</footer>
</div>
</body>
</html>