-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.php
More file actions
113 lines (95 loc) · 2.41 KB
/
request.php
File metadata and controls
113 lines (95 loc) · 2.41 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AllMedical</title>
<style title="MainDiv">
body {
background-image: url(img/background.jpg);
font-family: Helvetica;
font-weight: bold;
font-size: 12px;
color: #424242;
}
div {
background-color: #BFBFBF;
alignment-adjust: central;
background-image: url(img/background-div.png);
}
img {
border: 20px solid rgba(255, 0, 0, 0);
background-clip: padding-box;
}
a:link {
color: #373737;
text-decoration: none;
}
a:visited {
color: #373737;
}
a:hover {
color: #5B5B5B;
}
a:active {
color: #373737;
}
#logo {
background-color: rgba(0, 0, 0, 0);
width: 416px;
height: 95px;
background-image: url(img/AllMedical-logo.png);
}
#center {
margin-left: auto;
margin-right: auto;
width: 500px;
height: 550px;
border-radius: 1px;
box-shadow: 0px 0px 0px 8px rgba(0,0,0,0.3);
}
#home {
background-color: rgba(0, 0, 0, 0);
width: 98px;
height: 50px;
background-image: url(img/home.png);
}
#request {
background-color: rgba(0, 0, 0, 0);
width: 330px;
height: 36px;
background-image: url(img/requestapp.png);
}
</style>
</head>
<body>
<br /><br /><br />
<div id="center" align="center">
<br><br><br><br>
<div id="logo"></div>
<a href="/wad"><div id="home"></div></a>
<div id="request"></div><br>
<form action="app-request.php" method="post">
<table>
<tr>
<td valign="top"><label for="reason">Reason<font color="#990033">*</font></lable></td>
<td><textarea name="reason" maxlength="1000" cols="25" rows="6" required autofocus></textarea></td>
</tr>
<tr>
<td><label for="doctor">Doctor<font color="#990033">*</font></label></td>
<td><input type="text" name="doctor" required></td>
</tr>
<tr>
<td><label for="date">Preferred date<font color="#990033">*</font></label></td>
<td><input type="date" name="date" required></td>
</tr>
<tr>
<td><label for="time">Preferred time<font color="#990033">*</font></label></td>
<td><input type="time" name="time" required></td>
</tr>
</table>
<br>
<p>(<font color="#990033">*</font> - required)</p>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>