-
Notifications
You must be signed in to change notification settings - Fork 0
/
Book_details.html
37 lines (30 loc) · 981 Bytes
/
Book_details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Styles/Book_details.css">
</head>
<body>
<div class="top_level">
<img id="logo" src="./Images/Logo.svg" alt="Logo SVG">
<div class="center">
<h1>Book</h1>
<form method="post" action="./PHP/book_cycle.php">
<div class="txt_field">
<input type="text" name="from" required>
<span></span>
<label> From </label>
</div>
<div class="txt_field">
<input type="text" name="to" required>
<span></span>
<label> To </label>
</div>
<input type="submit" value="Book" name="submit">
</form>
</div>
</div>
</body>
</html>