-
Notifications
You must be signed in to change notification settings - Fork 1
/
robux.html
28 lines (28 loc) · 905 Bytes
/
robux.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="global.css" />
<script>
function genorate(){
document.getElementById("genorator").innerHTML = "All Robox Has Been Genorated."
}
</script>
</head>
<body>
<h1 class="center">Robux Genorator v1.0</h1>
<fieldset>
<legend>Select User</legend>
<label>Username<br />
<input type = "text" name = "username" />
</label> <br />
<label>Password<br />
<input type = "password" name = "password" />
</label><br />
<label>Amount of Robox To Genorate
<input type = "text" name = "robux" />
</label><br />
<button onclick = "genorate()">Genorate Robux</button>
<p id = "genorator"></p>
</fieldset>
</body>
</html>