-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
81 lines (69 loc) · 2.25 KB
/
sign.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
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
<doctype! html>
<html>
<head>
<title>
HOSP-REG
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
legend{
padding:2px;
margin-left: 27%;
}
h3{
display:inline;
color:black;
text-transform: uppercase;
text-align:center;
font-size: medium;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h3:hover{
font-size: larger;
border-color: rosybrown;
}
input[type=text]:hover{
font-size: larger;
border-color: rosybrown;
}
input[type=password]:hover{
font-size: larger;
border-color: rosybrown;
}
fieldset:hover{
border-width:thick;
}
fieldset{
border-color: rosybrown;
border-width: thin;
}
body,html{
height: 100%;
}
input[type=submit]:hover{
color: black;
font-size: medium;
}
</style>
</head>
<body>
<fieldset style="background-image: url('bg.jpg'); background-repeat: no-repeat; background-size: cover;background-position: center; height: 100%;">
<center>
<form action="hosp1.html">
<br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br> <br><br> <br><br>
<fieldset style="width:400px;">
<br><br><legend><h3>Enter login details</h3></legend>
<h3>username</h3> <input type="text" name="username" required >
<br><br>
<h3>password</h3> <input type="password" name="userpassword" required>
<br><br><br>
<input type="submit" value="submit" onClick="index.html">
</fieldset>
</form>
<a href="index.html">back</a>
</center><br><br><br><br><br><br><br><br><br><br><br><br>
</fieldset>
</body>
</html>