-
Notifications
You must be signed in to change notification settings - Fork 1
/
member_buy.html
29 lines (26 loc) · 991 Bytes
/
member_buy.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>구매하기</title>
<link rel="stylesheet" type="text/css" href="css/buy.css">
</head>
<body>
<header>
<a class="title" href="/">경기대 식권발매</a>
</header>
<section>
<div class="box">
<div class="text">
<form action="php/member_buy.php" method="get">
<div class="sik"><p>구매 할 장수를 입력해주세요<br><span>(숫자만)</span></p></div>
<div><input type="number" name="count" min="1" value="갯수" class="a number"></div>
<div><input type="submit" value="구매하기" class="a buy"></div>
</form>
</div>
</div>
</section>
</body>
</html>