강희주

Merge branch 'feature/signup_front'

1 +#container {
2 + width:600px;
3 + margin:10px auto;
4 + }
5 + fieldset {
6 + margin-bottom: 20px;
7 + }
8 + ul {
9 + list-style: none;
10 + padding-left: 0;
11 + }
12 + ul li {
13 + margin:10px;
14 + }
15 +
16 + /* label 텍스트 스타일 */
17 + li label {
18 + width:120px;
19 + line-height: 36px;
20 + float:left;
21 + font-weight:bold;
22 + }
23 +
24 + /* 텍스트 필드 스타일 */
25 + input[type="text"], input[type="password"], input[type="email"] {
26 + width:300px;
27 + height:30px;
28 + }
29 +
30 + /* 버튼 스타일 */
31 + #buttons {
32 + width:400px;
33 + margin:20px auto;
34 + text-align: center;
35 + }
36 + #buttons input {
37 + width:150px;
38 + height:50px;
39 + font-size:20px;
40 + }
41 + #buttons input:hover {
42 + background-color:rgb(27, 134, 221);
43 + color:#fff;
44 + border-color:#fff;
45 + }
46 +
47 + /* 드롭다운 메뉴 스타일 */
48 + select {
49 + width:100px;
50 + height:30px;
51 + }
...\ No newline at end of file ...\ No newline at end of file
1 +<!DOCTYPE html>
2 +<html lang="ko">
3 + <head>
4 + <script src="main.js"> </script>
5 + <meta charset="UTF-8">
6 + <title>회원 가입</title>
7 + <style>
8 + #container {
9 + width:600px;
10 + margin:10px auto;
11 + }
12 + </style>
13 + <link rel="stylesheet" href="register2.css">
14 + </head>
15 + <body>
16 + <div id="container">
17 + <h1>'프로그램명'을 방문해주셔서 감사합니다.</h1>
18 + <form>
19 + <fieldset>
20 + <legend>사용자 정보</legend>
21 + <ul>
22 + <li>
23 + <label for="umail">아이디(이메일)</label>
24 + <input type="email" id="umail" required>
25 + </li>
26 + <li>
27 + <label for="pwd1">비밀번호</label>
28 + <input type="password" id="pwd1" placeholder="문자와 숫자, 특수 기호 포함" required>
29 + </li>
30 + <li>
31 + <label for="pw2">비밀번호 확인</label>
32 + <input type="password" id="pwd2" required>
33 + </li>
34 + </ul>
35 + </fieldset>
36 +
37 + <div id="buttons">
38 + <input type="submit" value="가입하기">
39 + <input type="reset" value="취소">
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