-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
40 lines (33 loc) · 938 Bytes
/
signup.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
<html>
<head>
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<h4>Please provide necessary information for accessing the Event Data API</h4>
<form action="/api/signup">
First name:<br>
<input type="text" name="firstName" value="">
<br>
Last name:<br>
<input type="text" name="lastName" value="">
<br><br>
Email:<br>
<input type="text" name="email" value="">
<br><br>
Country:<br>
<input type="text" name="country" value="">
<br><br>
Organization: <br>
<input type="text" name="organization" value="">
<br><br>
Working as:<br>
<input type="text" name="position" value="">
<br><br>
API Access is requested for:<br>
<textarea rows="4" cols="50" name="purpose" value=""></textarea>
<br><br>
<div class="g-recaptcha" data-sitekey="6Lfot10aAAAAALe6yV1dVN41U2URZG3vPoRVz2Bu"></div>
<input type="submit" value="Submit">
</form>
</body>
</html>