-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReservation.html
54 lines (49 loc) · 1.49 KB
/
Reservation.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<!--comment, not print on screen-->
<html>
<head>
<title>Reservation</title>
<meta charset="utf-8">
<meta author="Young Ho Kim">
<style type="text/css">
h3{text-align: center;}
div {
position:relative;
z-index:1;}
div:after {
background-image:url("Young's.jpg");
top:0;
left:0;
position:fixed;
background-size:100% 100%;
opacity:0.3!important;
filter:alpha(opacity=50);
z-index:-1;
content:"";
width:100%;
height:100%;
}
</style>
</head>
<body>
<div>
<h3>Reservation</h3>
<form method="post" action="index.html">
<fieldset style="margin-left:350px; margin-top: 200px; width:600px;">
<p>Name : <input type="text" name="user_name"><br>
Tel : <input type="tel" name="user_tel" placeholder="00*-000*-0000" pattern="[0-9]{2,3}-[0,9]{3,4}-[0,9]{4}"><br>
email : <input type="email" name="user_email" placeholder="***@***.***"><br>
date : <input type="date" name="revDate" min="2019-10-11"><br>
time : <input type="time" name="revTimeStart" min="09-00" max="18:00"> ~
<input type="time" name="revTimeEnd" min="09-00" max="18:00"><br></p>
</fieldset>
</form><br>
<a href="index.html" onclick= alert><input type="button" id="button1" onclick="button1_click();" value="submit" style="margin-left:350px;"></a>
</div>
<script>
function button1_click() {
alert("Reservation Successfully");
}
</script>
</body>
</html>