-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rborr_history.php
132 lines (106 loc) · 2.72 KB
/
Rborr_history.php
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>查询读者借阅历史</title>
<style>
* {
margin: 0px;
padding: 0px;
}
html,
body {
height: 100%;
}
h1 {
text-align: center;
background-color: red;
}
.box {
border: 5px solid;
border-radius: 10px;
top: 50px;
background-color: rgb(173, 169, 129);
margin: 0px auto;
width: 400px;
height: 205px;
position: relative;
}
.head {
text-align: center;
font: 32px kaiti;
color: white;
background-color: brown;
font-weight: bold;
line-height: 40px;
padding: 10px;
}
.profile {
color: white;
font: 20px kaiti;
margin: 5px 5px;
}
.submit {
position: absolute;
top: 140px;
left: 160px;
}
.text {
border: 3px;
height: 25px;
border-radius: 5px;
position: absolute;
left: 155px;
width: 220px;
background: #f2eee1;
}
.Title {
color: white;
font: 20px kaiti;
margin-left: 10px;
}
.button {
margin: 0 auto;
padding: 8px;
background-color: #892844;
color: white;
width: 90px;
border-radius: 6px;
}
.button:hover {
background-color: rgb(62, 12, 85);
}
.back {
position: absolute;
top: 95%;
left: 10px;
}
a {
text-decoration: none;
background-color: darkgoldenrod;
color: white;
border-radius: 2px;
padding: 5px;
}
.readerNo {
position: absolute;
top: 100px
}
</style>
</head>
<body>
<div class="box">
<div class="head">查询读者借阅历史</div>
<br>
<form method="POST" action="Rborr_historyS.php">
<div class="readerNo">
<span class="Title" style="letter-spacing: 0.2em;">请输入读者号</span><input class="text" type="text" name="readerno"><br><br>
</div>
<div class="submit"><input class="button" type="submit" name="button" value="查询"></div>
</form>
</div>
<div class="back"><a href="main.php">返回首页</a></div>
</body>
</html>
<?php