forked from Junnie-Jobs/JWP-Trello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
signUp.html
50 lines (41 loc) · 1.6 KB
/
signUp.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
<html>
<head>
<meta charset="utf-8">
<title>JWP Trello signUp</title>
<link type="text/css" rel="stylesheet" href="./lib/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="./css/signup.css">
</head>
<body>
<header>
<div class="header-wrapper">
<a href="#" class="brand-logo">JWP Trello</a>
</div>
</header>
<div class="signup-box z-depth-2">
<h4>Create a Account</h4>
<form class="signup-form" method="POST">
<div class="row">
<div class="input-field col s12">
<input id="user_name" type="text" class="validate">
<label for="user_name">Username</label>
</div>
</div>
<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="signup-btn waves-effect waves-light btn" type="submit" value="가입하기" />
</form>
</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>