forked from wdaweb/113php-2-11304-PHP_FILE_AND_GRAPHIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths20241021_05_hrform1.html
84 lines (69 loc) · 1.76 KB
/
s20241021_05_hrform1.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
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HR系統-登入</title>
<style>
span {
display: inline-block;
width: 10%;
text-align: center;
}
input[type="text"] {
width: 80%;
}
input[type="password"] {
width: 80%;
}
input[type="date"] {
width: 70%;
}
input[type="submit"] {
display: block;
margin: 0 auto;
}
body {
background-color: #f2f2f2;
margin: 0;
height: 100vh;
}
fieldset {
margin: auto;
width: 80%;
background-color: #deedf8;
border: 2px solid #1c6799;
padding: 20px;
border-radius: 8px;
box-shadow: 10 0 5px #01101b;
}
legend {
font-weight: bold;
font-size: 30px;
color: #074e7d;
}
</style>
</head>
<body>
<fieldset>
<legend>HR 系統</legend>
<form action="./s20241021_05_hrform2.html" method="GET">
<p>
<span>
<label for="">帳號:</label>
</span>
<input type="text" name="myNumber" id="" placeholder="帳號">
</p>
<p>
<span>
<label for="">密碼:</label>
</span>
<input type="password" name="myPassword" id="" placeholder="password">
</p>
<p>
<input type="submit" value="登入">
</p>
</form>
</fieldset>
</body>
</html>