forked from DesignPattern-Team13/OrderDeliverySystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateMemberForm.html
More file actions
43 lines (43 loc) · 1.24 KB
/
createMemberForm.html
File metadata and controls
43 lines (43 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>상품 주문</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
body {
background-color: #f8f9fa;
}
.container {
max-width: 500px;
margin: 50px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group label {
font-weight: bold;
}
.btn-primary {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h2>상품 주문</h2>
<form action="/members/new" method="post">
<div class="form-group">
<label for="name">이름</label>
<input type="text" class="form-control" id="name" name="name" placeholder="이름을 입력하세요" required>
</div>
<button type="submit" class="btn btn-primary">주문</button>
</form>
</div> <!-- /container -->
</body>
</html>