-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
60 lines (57 loc) · 2.06 KB
/
form.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Nakano - Register</title>
<meta charset="utf-8" />
<link rel='stylesheet' type="text/css" href="styles/css.css" />
</head>
<body>
<img id="menuimg" src="public/nakano.webp" />
<div id="menu">
<a href="./index.html">Home</a>
<a href="http://34.135.31.67">DeSo</a>
</div>
<div id="theform">
<form class="abox">
<fieldset>
<label>Name</label><br />
<input type="text" placeholder="What is your name?" required/>
</fieldset>
<fieldset>
<label>Email</label><br />
<input type="email" placeholder="What is your email?" required/>
</fieldset>
<fieldset>
<label>Subjects</label><br />
<textarea placeholder="What subjects are you qualified to teach?" required></textarea>
</fieldset>
<fieldset>
<label>DeSo Username or Public Key</label><br />
<input type="text" placeholder="What is your DeSo username of public key?" required/>
</fieldset>
<fieldset>
<input type="checkbox" required /><label>I will not use this platform to spread misinformation or hate.</label>
</fieldset>
<fieldset><input type="submit" value="Submit" /></fieldset>
</form>
</div>
</body>
<!-- These scripts provided by https://vantajs.com/ -->
<script src="./js/three.r119.min.js"></script>
<script src="./js/vanta.halo.min.js"></script>
<script>
VANTA.HALO({
el: "body",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
baseColor: 0x7a0b64,
backgroundColor: 0x301934,
amplitudeFactor: 1.70,
xOffset: 0.10,
size: 1.30
})
</script>
</html>