-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path2_Joinpage.html
More file actions
90 lines (79 loc) · 2.83 KB
/
2_Joinpage.html
File metadata and controls
90 lines (79 loc) · 2.83 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>join complete</title>
<style>
.navbar{
background-color: #e6eaaa;
font-size: auto;
color: white;
}
p{
text-align: center;
font-size: 20px;
}
.btn{
background-color: #ff8868;
position: relative;
font-size: 18px;
font-weight: bold;
height:auto;
text-align:center;
}
#footer {
font-size: 70%;
background-color: #e6eaaa;
font-weight: bold;
text-align: right;
margin: auto;
padding: 5px;
position: relative;
height: 20px;
}
#link3{
color: white;
}
#icon_color{
color: orange;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand" id="link3">JoinPage</a>
</div>
<div class="container-fluid">
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="6_Information.html"><span class="glyphicon glyphicon-home" id="icon_color"></span> 이용안내</a></li>
<li><a href="3_Login.html"><span class="glyphicon glyphicon-off"id="icon_color"></span> 로그인</a></li>
<li><a href="14_listreservation.html">
<span class="glyphicon glyphicon-book" id="icon_color"></span> 예약확인/예약취소 </a></li>
</ul>
</div>
</div>
</nav>
<span style="line-height: 230px"><br></span>
<div>
<p>회원가입이 완료되었습니다.</p>
<p>입력하신 이메일에 인증메일이 전송되었습니다.</p>
<p>이메일에서 본인인증 후 사이트 사용이 가능하니, 인증 완료후 사용하시길 바랍니다.</p>
</div>
<span style="line-height: 100px"><br></span>
<div class="container" align="center">
<button type="button" class="btn btn-danger"><a href="3_Login.html" style="color: white; width: 10px">로그인하기</a></button>
</div>
<span style="line-height: 105px"><br></span>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>