This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application_status.html
54 lines (45 loc) · 2.13 KB
/
application_status.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
<html lang="en"><head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./public/css/bootstrap.min.css">
<link rel="stylesheet" href="./public/css/default.css">
<title>소프트웨어에 물들다</title>
</head>
<body>
<div class="container paper">
<div class="jumbotron shadow">
<div class="container">
<h1>소프트웨어에<br>물들다<br>로그인</h1>
</div>
<hr>
<form>
<div class="form-group">
<label for="emailw">이메일</label>
<input type="email" class="form-control input" id="email" placeholder="이메일을 입력해주세요.">
</div>
<div class="form-group">
<label for="passwordw">비밀번호</label>
<input type="password" class="form-control input" id="password" placeholder="비밀번호를 입력해주세요.">
</div>
<div class="form-group">
<a type="button" id="submit"><button type="submit" class="btn btn-primary" >완료</button></a>
<br>
<br>
<a href="">비밀번호를 잊으셨나요?</a>
</div>
</form>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="./public/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="./public/js/validate.js"></script>
<script src="./public/js/application_status.js"></script>
</body>
</html>