login.ejs
2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>묵호 - 놀이터</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="../assets/favicon.ico" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" type="text/css" />
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="../css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation-->
<nav class="navbar navbar-light bg-light static-top">
<div class="container">
<a class="navbar-brand" href="/main">묵호의 놀이터</a>
<div class="user">
<a class="btn btn-primary" href="/register">회원가입</a>
</div>
</div>
</nav>
<div class="container px-5 my-5">
<h2>로그인</h2>
<form action="/login" method="post" id="contactForm" data-sb-form-api-token="API_TOKEN">
<div class="form-floating mb-3">
<input class="form-control" name="ID" id="ID" type="text" required minlength='1' maxlength='20' placeholder="ID" data-sb-validations="required" />
<label for="ID">아이디</label>
<div class="invalid-feedback" data-sb-feedback="id:required">아이디를 입력하세요.</div>
</div>
<div class="form-floating mb-3">
<input class="form-control" name="password" id="password" required minlength='1' maxlength='20' type="password" placeholder="password" data-sb-validations="required" />
<label for="password">비밀번호</label>
<div class="invalid-feedback" data-sb-feedback="password:required">비밀번호를 입력하세요.</div>
</div>
<div class="d-grid">
<button class="ajaxsend btn btn-primary btn-lg" id="submitButton" type="submit">로그인</button>
</div>
<section class="messages" style="color:crimson;"> <%= message %> </section>
</form>
</div>
</body>
</html>