forked from matthewglassman/projectrecipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
57 lines (46 loc) · 1.89 KB
/
landing.html
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Log-In</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link type="text/css" rel="stylesheet" href="css/materialize.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="row">
<div class="container">
<div class="col s9">
<div class="card-panel" id="loginBox">
<div class="row">
<form class="col s12">
<h4 class="header">SIGN IN</h4>
<div class="row">
<div class="input-field col s4">
<i class="mdi-action-account-circle prefix"></i>
<input id="icon_prefix" type="text" class="validate">
<label for="icon_prefix">Username</label>
</div>
<div class="input-field col s4">
<i class="mdi-action-lock-outline prefix"></i>
<input id="icon_password" type="password" class="validate">
<label for="icon_password">Password</label>
</div>
<div class="input-field col s4">
<div class="input-field col s12">
<button class="btn #03a9f4 light-blue" type="submit" name="action" id="loginButton" ><i class="mdi-action-lock-open"></i><a id="loginButton" href="ProjectOne_FirstDraft.html">Login</a></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery is required by Materialize to function -->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
<script type="text/javascript" src="js/jamie.js"></script>
</body>
</html>