forked from Junnie-Jobs/JWP-Trello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
52 lines (43 loc) · 1.65 KB
/
login.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
<html>
<head>
<meta charset="utf-8">
<title>JWP Trello Login</title>
<link type="text/css" rel="stylesheet" href="./lib/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="./css/login.css">
</head>
<body>
<header>
<div class="header-wrapper">
<a href="#" class="brand-logo">JWP Trello</a>
<ul>
<li><a href="signUp.html">sign up</a></li>
</ul>
</div>
</header>
<div class="login-box z-depth-2">
<h4>Login To Trello</h4>
<form class="login-form" method="POST">
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="password" type="password" class="validate">
<label for="password">Password</label>
</div>
</div>
<input class="login-btn waves-effect waves-light btn" type="submit" value="로그인" />
</form>
<p class="alternatives-separator">or</p>
<a class="github-login waves-effect waves-light btn" href="#">
<div class="github-icon"></div>
<div class="github-login-text">github로 로그인</div>
</a>
</div>
<script type="text/javascript" src="./lib/jquery-2.2.0.min.js"></script>
<script type="text/javascript" src="./lib/materialize.min.js"></script>
</body>
</html>