-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
51 lines (33 loc) · 989 Bytes
/
test.html
File metadata and controls
51 lines (33 loc) · 989 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="script2.js"></script>
</head>
<body>
<h1>My First Web Page</h1>
<input type="button" onclick="generatePassword()" value="Display">
<p id="demo"></p>
<marquee direction="right" behavior="alternate" style="background:white;border:BLUE 3px SOLID">
You need a password to enter this site!
</marquee>
<br /><br />
<center>
<div id="form">
<h1>Log in to the Winter Wonderland</h1>
<li>
<label for="name">Password:</label>
<input type="text" id="inject" name="user_name">
<p style="font-family:verdana">
</p>
</li>
<!-- <li>
<label for="password">Password:</label>
<input type="password" id="mail" name="user_email">
</li> -->
<br />
<button onclick="WinterSubmit()">Use the Password you received from your instructor</button>
<p id="resultp"></p>
</div>
</center>
</body>
</html>