-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.21 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>Lakehead University Residence</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<div class = 'container nobg'>
<center><img src = "css/logo.png"></img></center>
</div>
<div class = 'container' style = 'margin-top: 40px;'>
<h2>Residence Login</h2>
<form action="scripts/login.jsp">
<div class="row">
<div class="six columns">
<label for="exampleEmailInput">Email</label>
<input class="u-full-width" placeholder="example@lakeheadu.ca" name="username" type="email">
</div>
<div class="six columns">
<label for="exampleRecipientInput">Password</label>
<input class="u-full-width" placeholder="" name="password" type="password">
</div>
</div>
<input class = "button-primary" type="submit" name = "s_login" value="Student Login">
<input class = "u-pull-right" type="submit" name = "m_login" value="Manager Login">
<a class="button" href="register.html">Register (as student)</a>
</form>
</div>
</body>
</html>