-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xhtml
More file actions
27 lines (27 loc) · 1.06 KB
/
index.xhtml
File metadata and controls
27 lines (27 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form action="#" method="post">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required="required" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required="required" />
</div>
<button type="submit" class="login-button">Login</button>
</form>
</div>
</body>
</html>