-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 863 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<title>Particle js</title>
</head>
<body id="particles-js">
<div class="loginBox">
<h2>Login</h2>
<form action="#">
<div class="userinputBox">
<label for="username">Username</label>
<input type="text" id="username" required>
</div>
<div class="userinputBox">
<label for="password">Password</label>
<input type="password" id="password" required>
</div>
<button type="submit">submit</button>
</form>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
</div>
</body>
</html>