-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 961 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 961 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Iboss Generator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1 class="form__field">IBoss Block Page Generator</h1>
</header>
<div class="form__group">
<input class="form__field" placeholder="Group Name" id="group">
<br>
<input class="form__field" placeholder="Group Number" id="groupn">
<br>
<input class="form__field" placeholder="Blocked Page" id="blocked">
<br>
<input class="form__field" placeholder="Reason of Block" id="desc">
<br>
<input class="form__field" placeholder="IP Address" id="ip">
<br>
<input class="form__field" placeholder="UserName" id="user">
<br>
<button class="form__field" onclick="generate()">Generate!</button>
</div>
<script src="generate.js"></script>
</body>
</html>