-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.html
71 lines (66 loc) · 3.4 KB
/
signin.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>에어프레미아 Air PREMIA - 로그인</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/10.6.2/css/bootstrap-slider.min.css"
integrity="sha256-G3IAYJYIQvZgPksNQDbjvxd/Ca1SfCDFwu2s2lt0oGo=" crossorigin="anonymous"/>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/css/tempusdominus-bootstrap-4.min.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav class="navbar nav-global nav-global-sign navbar-expand-sm">
<div class="container d-flex justify-content-center">
<a class="navbar-brand" href="index.html">
<a class="navbar-brand" href="index.html">
<img class="img-brand" alt="Air PREMIA" width="190"
src="https://cdn.imweb.me/thumbnail/20191106/f7be414935fd1.png">
</a>
</a>
</div>
</nav>
<div class="container container-sign">
<form class="form-sign">
<h5 class="form-headline">✈️ 로그인 🗺</h5>
<div class="form-group">
<input type="text" class="form-control" id="inputEmail" placeholder="이메일 입력">
</div>
<div class="form-group">
<input type="password" class="form-control" id="inputPassword" placeholder="비밀번호 입력">
</div>
<button class="btn btn-block btn-primary">로그인 하기</button>
<a href="signup.html" class="btn btn-block btn-light">계정 만들기</a>
<h6 class="txt-terms">
<a href="#">이용약관</a> 및 <a href="#">개인정보</a> 취급방침
</h6>
</form>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/js/tempusdominus-bootstrap-4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/css/tempusdominus-bootstrap-4.min.css"/>
<script type="text/javascript">
$('#myModal').modal(options)
$(function () {
$('#departure-date').datetimepicker();
$('#arrival-date').datetimepicker({
useCurrent: false
});
});
</script>