-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.41 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login | The Glory Talk</title>
<link href="img/백합.png" rel="shortcut icon" type="image/x-icon">
<link href="css/styles.css" rel="stylesheet" />
<script defer src="https://kit.fontawesome.com/ec08099fdd.js" crossorigin="anonymous"></script>
<meta property="og:url" content="https://yeongseoyoon.github.io/The-Glory-Talk/">
<meta property="og:title" content="The Glory Talk">
<meta property="og:type" content="website">
<meta property="og:image" content="img/thumbnail.png">
<meta property="og:description" content="복수가 필요할 땐? - The Glory Talk">
<meta name="twitter:image" content="img/thumbnail.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet" />
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>No Service</span>
<!--To Do: Wifi Icon-->
<i class="fa-solid fa-wifi"></i>
</div>
<div class="status-bar__column">
<span>18:43</span>
</div>
<div class="status-bar__column">
<span>76%</span>
<!--To Do: Battery Icon-->
<i class="fa-solid fa-battery-three-quarters fa-lg"></i>
<!--To Do: Lightning Icon-->
<i class="fa-solid fa-bolt"></i>
</div>
</div>
<header class="welcome-header">
<h1 class="welcome-header__title">The Glory Talk</h1>
<p class="welcome-header__text">이메일 혹은 핸드폰 번호로 로그인 해주세요.
</p>
</header>
<form action="friends.html" method="get" id="login-form">
<input name="username" type="text" placeholder="이메일 / 전화번호" required />
<input name="password" type="password" placeholder="비밀번호" minlength="8" required />
<input type="submit" value="로그인" />
<div class="login-form__account-find">
<a href="#">아이디 찾기</a>
<span>|</span>
<a href="#">비밀번호 찾기</a>
</div>
</form>
<div id="no-mobile">
<span>화면 사이즈가 너무 큽니다.</span>
<span>사이즈를 줄여주세요.</span>
</div>
</body>
</html>