-
Notifications
You must be signed in to change notification settings - Fork 17
/
contributor_form.html
87 lines (87 loc) · 2.06 KB
/
contributor_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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thunderbolt - Apply As Contributor</title>
<link rel="shortcut icon" href="./assets/images/dsc_logo.ico" />
<link rel="stylesheet" href="./assets/css/form_page.min.css" />
</head>
<body class="flx">
<div class="left flx col al-cnt">
<form action="#" method="POST" id="applicationForm">
<fieldset>
<div class="flx col al-cnt">
<legend>APPLY AS A CONTRIBUTOR</legend>
<input
type="text"
class="form_field"
name="firstname"
placeholder="Firstname"
required
/>
<input
type="text"
class="form_field"
name="lastname"
placeholder="Lastname"
required
/>
<input
type="email"
class="form_field"
name="email"
placeholder="Email"
required
/>
<textarea
name="reason"
id="reason"
cols="30"
rows="10"
class="form_field"
required
>
Reason</textarea
>
</div>
</fieldset>
<button class="btn1">APPLY AS CONTRIBUTOR</button>
</form>
<ul class="sm-icons">
<li class="sm-icon">
<a href="" class="twitter-icon">
<img
src="./assets/images/twitter-logo-black.svg"
alt="Twitter Logo"
/>
</a>
</li>
<li class="sm-icon">
<a href="" class="github-icon">
<img
src="./assets/images/github-logo-black.svg"
alt="Github Logo"
/>
</a>
</li>
</ul>
<p>Already have an account? <a href="/sign_in.html" class="link">SIGN IN</a></p>
</div>
<div class="right flx col al-cnt">
<div class="black-bg flx col">
<div class="info flx col al-c-st">
<img src="./assets/images/dsc_logo.svg" />
<h1>
Become A Contributor
</h1>
<div class="border"></div>
<p>
Apply to become a contributor on the blog
</p>
</div>
</div>
</div>
<script src="./assets/js/dist/bundle.min.js"></script>
</body>
</html>