-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (84 loc) · 2.7 KB
/
index.html
File metadata and controls
87 lines (84 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>iReporter</title>
<link rel="stylesheet" href="UI/css/main.css">
<script type="text/javascript" src="UI/js/main.js">
</script>
</head>
<body>
<div id="nav" class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#register">Register</a></li>
<li><a href="#login">Login</a></li>
</ul>
</div>
<div class="container">
<div id="home" class="bg">
<div>
<h1>iReporter</h1>
<p>iReporter enables any/every citizen to bring any form of corruption to the notice of appropriate authorities and thegeneral public. Users can also report on things that needs government intervention</p>
</div>
</div>
<div id="register" class="bg">
<div class="form-container">
<h1>Register</h1>
<form class="sign_up_form" action="sign_up.html" method="post">
<div class="form-group">
<label for="Username">Username</label>
<input type="text" placeholder="Username">
</div>
<div class="form-group">
<label for="First Name">First Name</label>
<input type="text" placeholder="First Name">
</div>
<div class="form-group">
<label for="Second Name">Second Name</label>
<input type="text" placeholder="Second Name">
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="text" placeholder="Email">
</div>
<div class="form-group">
<label for="Phone">Phone</label>
<input type="text" placeholder="Phone">
</div>
<div class="form-group">
<label for="Password">Password</label>
<input type="password" placeholder="******">
</div>
<div class="form-group">
<input type="submit" class="button-default" name="Sign Up" value="submit">
</div>
</form>
</div>
</div>
<div id="login" class="bg">
<div class="form-container">
<h1>Login</h1>
<form class="sign_up_form" action="sign_up.html" method="post">
<div>
<label for="Email">Email</label>
<input type="text" placeholder="Email">
</div>
<div>
<label for="Password">Password</label>
<input type="password" placeholder="******">
</div>
<div>
<input type="submit" class="button-default" name="Login" value="submit">
</div>
</form>
</div>
</div>
<div class="footer">
<li><a href="#home">Home</a></li>
<li><a href="#register">Register</a></li>
<li><a href="#login">Login</a></li>
</div>
</div>
</body>
</html>