blob: 51e896a71d1010477eb9636f090513496602b906 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevHive - Login</title>
</head>
<body>
<div id="content">
<div id="title">
Login
</div>
<hr>
<form>
<div class="input-selection">
<input type="text" placeholder="Username" required>
<label>Username</label>
</div>
<div class="input-selection">
<input type="password" placeholder="Password" required>
<label>Password</label>
</div>
<hr>
<button type="submit" value="Submit" id="submit-btn">Submit</button>
</form>
</div>
</body>
</html>
|