진재영

login.html updated

1 +<!DOCTYPE html>
2 +<html lang="ko">
3 + <head>
4 + <meta charset="UTF-8">
5 + <title>로그인</title>
6 + <style>
7 + #container {
8 + width:600px;
9 + margin:10px auto;
10 + }
11 + </style>
12 + <link rel="stylesheet" href="http://localhost:3000/register.css">
13 + </head>
14 + <body>
15 + <div id="container">
16 + <h1>'프로그램명'을 방문해주셔서 감사합니다.</h1>
17 + <form action="/login" method="post">
18 + <fieldset>
19 + <legend>로그인</legend>
20 + <ul>
21 + <li>
22 + <label for="umail">아이디(이메일)</label>
23 + <input type="email" id="umail" required>
24 + </li>
25 + <li>
26 + <label for="pwd">비밀번호</label>
27 + <input type="password" id="pwd" placeholder="문자와 숫자, 특수 기호 포함" required>
28 + </li>
29 + </ul>
30 + </fieldset>
31 +
32 + <div id="buttons">
33 + <input type="submit" value="로그인">
34 + <input type="reset" value="취소" onclick="movepage3()"/>
35 + <script type="text/javascript">
36 + function movepage3() {
37 + location.href = "/"
38 + }
39 + </script>
40 + </div>
41 + </form>
42 + <br>
43 + <br>
44 + <br>
45 + <!-- 공간확보 -->
46 +
47 + <footer>
48 + <div>
49 + <p><b>developed by 강희주, 진재영, 김재욱</b></p>
50 + <address>Contact for more information. 010-2400-6771</address>
51 + <img style="width: 30%; height: 30%; float: right;" src="https://blog.kakaocdn.net/dn/bjsDsi/btqxXJM3JKe/WAK7xHbOm7kxyVqRIvoOaK/img.jpg" alt="경희대 마크">
52 + </div>
53 + </footer>
54 +
55 + </div>
56 + </body>
57 +</html>
...\ No newline at end of file ...\ No newline at end of file