#16 board : sign-up template, css
This commit is contained in:
@@ -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+ */
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
33
board/src/main/resources/templates/sign-up.html
Normal file
33
board/src/main/resources/templates/sign-up.html
Normal 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>
|
||||
Reference in New Issue
Block a user