#16 board : sign-up template, css

This commit is contained in:
haerong22
2022-08-21 21:01:22 +09:00
parent 14bdc13414
commit eb9bf718d6
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/* 게시글 본문 */
#article-content > pre {
white-space: pre-wrap; /* Since CSS 2.1 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}

View File

@@ -8,6 +8,7 @@
<title>게시글 페이지</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link href="/css/articles/article-content.css" rel="stylesheet">
</head>
<body>

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>회원 가입</title>
</head>
<body>
<header>
header 템플릿 삽입부
<hr>
</header>
<form>
<label for="userId">ID</label>
<input id="userId" type="text" required>
<label for="password">Password</label>
<input id="password" type="password" required>
<label for="email">Email</label>
<input id="email" type="email" placeholder="you@example.com">
<label for="nickname">Nickname</label>
<input id="nickname" type="text">
<label for="memo">메모</label>
<textarea id="memo" rows="3"></textarea>
<button type="submit">가입</button>
</form>
<footer>
<hr>
footer 템플릿 삽입부
</footer>
</body>
</html>