진재영

register.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="register2.css">
13 + </head>
14 + <body>
15 + <div id="container">
16 + <h1>'프로그램명'을 방문해주셔서 감사합니다.</h1>
17 + <form method="post" action="/join">
18 + <fieldset>
19 + <legend>사용자 정보</legend>
20 + <ul>
21 + <li>
22 + <label for="umail">아이디(이메일)</label>
23 + <input type="email" name="email" required>
24 + </li>
25 + <li>
26 + <label for="pwd1">비밀번호</label>
27 + <input type="password" name="password" placeholder="문자와 숫자, 특수 기호 포함" required>
28 + </li>
29 + <li>
30 + <label for="name">이름</label>
31 + <input type="name" name="name" placeholder="이름" required>
32 + </li>
33 + </ul>
34 + </fieldset>
35 +
36 + <div id="buttons">
37 + <input type="submit" value="가입하기">
38 + <input type="reset" value="취소" onclick="movepage2()"/>
39 + <script type="text/javascript">
40 + function movepage2() {
41 + location.href = "/"
42 + }
43 + </script>
44 +
45 + </div>
46 + </form>
47 + <br>
48 + <br>
49 + <br>
50 + <!-- 공간확보 -->
51 +
52 + <footer>
53 + <div>
54 + <p><b>developed by 강희주, 진재영, 김재욱</b></p>
55 + <address>Contact for more information. 010-2400-6771</address>
56 + <img style="width: 30%; height: 30%; float: right;" src="https://blog.kakaocdn.net/dn/bjsDsi/btqxXJM3JKe/WAK7xHbOm7kxyVqRIvoOaK/img.jpg" alt="경희대 마크">
57 + </div>
58 + </footer>
59 +
60 + </div>
61 + </body>
62 +</html>
...\ No newline at end of file ...\ No newline at end of file