-
Notifications
You must be signed in to change notification settings - Fork 1
/
timeout.html
90 lines (85 loc) · 2.73 KB
/
timeout.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>너로 정했다!</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
@font-face {
font-family: morris9;
src: url(fonts/morris.ttf) format('truetype');
}
body {
font-family: morris9;
color:white;
overflow-x: hidden;
background: url(login.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: 100% 100%;
min-width:40px;
}
.col-md-12 .img-responsive {
margin: 0 auto;
}
.col-md-4{
/*margin-top:50px;*/
position:absolute;
top:40%;
/*left:50%;*/
}
.container {
padding: 25px;
position: fixed;
}
.form-login {
background-color: black;
padding-top: 10px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
border-radius: 15px;
border-color:black;
border-width: 5px;
opacity: 0.8;
width:70%;
margin-left:auto;
margin-right:auto;
}
.form-control {
border-radius: 10px;
}
.wrapper {
text-align: center;
}
</style>
<script src="jquery.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript"></script>
</head>
<body>
<div class="row">
<div class="col-md-12"><img class="img-responsive" src="title.png" style="max-height:280px;" alt=""></div>
<div class="col-md-offset-4 col-md-4" style=" right: 0px; left: 0px;">
<div class="form-login">
<h1 style="text-align: center">시간 초과!</h1>
<h5 style="text-align: center">선배님에게 의뢰 완료를 다시 요청해 주세요!</h5>
<div class="wrapper">
<span class="group-btn">
<a href="http://ssumon.com/" id="login_button" class="btn btn-primary btn-md">홈으로<i class="fa fa-sign-in"></i></a>
</span>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript">
$('body').on('click', '#login_button', function(){
location.href='https://ssumon.com/';
});
</script>
</html>