-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborrow.jsp
More file actions
82 lines (77 loc) · 3.07 KB
/
borrow.jsp
File metadata and controls
82 lines (77 loc) · 3.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Managment System</title>
<link rel="stylesheet" href="css/shared.css">
<link rel="stylesheet" href="css/borrow.css">
<link rel="icon" href="img/logo.png" />
</head>
<body>
<header class="main-header">
<nav class="main-nav">
<div class="logo">
<a href="howe">
<img src="img/logo.png" alt="" width="40" height="40">
</a>
</div>
<a href="howe" class="astu">A.S.T.U</a>
<ul class="main-nav-items">
<li class="main-nav-item"><a href="borrow">Borrowed</a></li>
<li class="main-nav-item"><a href="return">Return</a></li>
<li class="main-nav-item"><a href="about">About</a></li>
<li class="main-nav-item"><a href="logout">Logout</a></li>
</ul>
</nav>
</header>
<main>
<section class="borrow-form">
<h1 class="title">Borrow a book</h1>
<form method="get" action="borrowm" id="borrow-form">
<div>
<label >Full Name:
<input type="text" name="name" placeholder="Abebe Kebede Bekele" class="name">
</label>
</div>
<div>
<label >ID Number:
<input type="text" name="student id" placeholder="UGR/308000/15" class="id">
</label>
</div>
<div>
<label >Phone NUmber:
<input type="number" name="phone number" placeholder="09-32-43-54-65" class="phone">
</label>
</div>
<div>
<label >Book Title:
<input type="text" name="book" placeholder="Applied Maths" class="book">
</label>
</div>
<div>
<label >Return Date:
<input type="text" name="Return Date" placeholder="dd-mm-yyyy" class="name">
</label>
</div>
<button type="submit" class="borrow-btn">Borrow</button>
</form>
</section>
<!-- verificatoin modal -->
<div class="verifiaction">
<h1>Are you sure?</h1>
<h2 class="verify_name"></h2>
<h2 class="verify_id"></h2>
<h2 class="verify_phone"></h2>
<h2 class="verify_book"></h2>
<div class="verificatoin-btns">
<button class="verificatoin-confirm verificatoin-btn" name="confirm">Confirm</button>
<button class="verificatoin-cancel verificatoin-btn" name="cancel">Cancel</button>
</div>
</div>
<div class="back-drop"></div>
</main>
<!--<script src="JS/borrow.js"></script>-->
</body>
</html>