-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.html
37 lines (35 loc) · 1006 Bytes
/
homepage.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
<!DOCTYPE HTML>
<html lang = "en">
<head>
<title>loginpage.html</title>
<meta charset = "UTF-8" />
<link rel= "stylesheet" type="text/css" href="style1.css">
</head>
<body>
<h1>Welcome Back to TriValley CoderDojo!</h1>
<div class= "Box" >
<form>
<fieldset>
<legend>Login</legend>
<p>
<label>Username</label>
<input type = "text"
id = "myText"
value = "" />
</p>
<p>
<label>Password</label>
<input type = "password"
id = "myPwd"
value = "" />
</p>
</fieldset>
</form>
</div>
<div class= "LoginButton">
<button type="button">Login</button>
<p> Or if you don't have an account: </p>
<button type="button">Create an Account</button>
</div>
</body>
</html>