-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
99 lines (95 loc) · 3.99 KB
/
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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Starseed - pico funding</title>
<base href="/">
<link rel="stylesheet" type="text/css" href="Starseed/static/css/demo.css">
<link rel="stylesheet" type="text/css" href="Starseed/static/css/form-basic.css">
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🚀</text></svg>">
</head>
<body>
<header>
<h1><a href="/">Starseed - pico funding</a></h1>
<a href="/about">About Us / FAQ</a>
</header>
<div class="main-header">
<h2>Starseed provides funding of $100 to ideas, businesses, projects, etc... We then help you make them
successful!</h2>
<p>In exchange for the $100, starseed asks for some equity.</p>
</div>
<div class="main-content">
<form class="form-basic" method="post" action="http://formspree.io/all@newspace.nyc">
<div class="form-title-row">
<h1>Apply for $100 funding</h1></br>
<small style="color:grey;">all fields are required</small>
</div>
<div class="form-row">
<label>
<span>Your full name</span>
<input type="text" name="person" maxlength="255" required id="id_person">
</label>
</div>
<div class="form-row">
<label>
<span>Your email</span>
<input type="email" name="_replyto" maxlength="255" required id="_replyto">
</label>
</div>
<div class="form-row">
<label>
<span>Name of idea or business</span>
<input type="text" name="name" maxlength="255" required id="id_name">
</label>
</div>
<div class="form-row">
<label>
<span>Describe your idea or business</span>
<textarea name="body" cols="40" rows="10" required id="body"></textarea>
</label>
</div>
<div class="form-row">
<label>
<span>What % of equity are you offering?</span>
<input type="number" name="equity" required id="id_equity">
</label>
</div>
<div class="form-row">
<label>
<span>Friend email #1</span>
<input type="email" name="email1" maxlength="255" required id="id_email1">
</label>
</div>
<div class="form-row">
<label>
<span>Friend email #2</span>
<input type="email" name="email2" maxlength="255" required id="id_email2">
</label>
</div>
<div class="form-row" style="text-align: center;">
<img src="/captcha/image/0d897aa194d7963a9af992bb061c4b227bb6e92e/" alt="captcha" class="captcha" />
<input type="hidden" name="captcha_0" value="0d897aa194d7963a9af992bb061c4b227bb6e92e" required
id="id_captcha_0"><input type="text" name="captcha_1" required id="id_captcha_1"
autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false">
</div>
<div class="form-row">
<button type="submit">Apply for Funding</button>
</div>
</form>
<footer class="footer">
<div class="footer-content">
<span class="copyright">
<a href="https://twitter.com/StarseedFund">
@StarseedFund
</a>
<br>
© 2021-2022
</span>
</div>
</footer>
</div>
</body>
</html>