-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.html
78 lines (69 loc) · 2.17 KB
/
version.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer Life</title>
<link rel="stylesheet" href="./styles/login_success_sample.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
font-family: 'Arial', sans-serif;
}
.button-container {
display: flex;
gap: 20px;
}
.version-button {
padding: 15px 30px;
font-size: 18px;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
color: white;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.v1-button {
background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
}
.v2-button {
background: linear-gradient(45deg, #4E65FF, #92EFFD);
}
.version-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.version-button:active {
transform: translateY(1px);
}
</style>
</head>
<body>
<div class="container">
<div class="success-card">
<div class="success-icon">
<i class="fas fa-check-circle"></i>
</div>
<h1>환영합니다!</h1>
<div class="user-info">
<i class="fas fa-user"></i>
<span>○○○님</span>
</div>
<div class="buttons">
<div class="button-container">
<a href="v1/index.html" class="version-button v1-button">V1</a>
<a href="index.html" class="version-button v2-button">V2</a>
</div>
</div>
</div>
</div>
</body>
</html>