-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.html
51 lines (47 loc) · 2.12 KB
/
request.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dataset Request Form</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
<h1 class="text-center mb-4">Dataset Request Form</h1>
<form action="thanks.html" method="post" class="form">
<div class="form-group">
<label for="researcherName">Full Name</label>
<input type="text" id="researcherName" class="form-control" name="researcherName" autofocus
placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" class="form-control" name="email" placeholder="Your Email">
</div>
<div class="form-group">
<label for="institution">Institution/Organization</label>
<input type="text" id="institution" class="form-control" name="institution"
placeholder="Your Institution">
</div>
<div class="form-group">
<label for="projectTitle">Project Title</label>
<input type="text" id="projectTitle" class="form-control" name="projectTitle"
placeholder="Title of Your Project">
</div>
<div class="form-group">
<label for="requestReason">Reason for Requesting Dataset</label>
<textarea id="requestReason" class="form-control" name="requestReason" rows="4"
placeholder="Please describe why you need the dataset"></textarea>
</div>
<button type="submit" class="btn btn-primary btn-block">Submit Request</button>
</form>
</div>
<footer>
<p class="text-center mt-4">
<a href="index.html">© 2024 Your Website Name. All rights reserved.</a>
</p>
</footer>
</body>
</html>