-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
58 lines (53 loc) · 2.49 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mailer</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-light bg-light sticky-top">
<div class="container-fluid">
<a class="navbar-brand text-primary font-weight-bold" href="#">Mailer</a>
</div>
</nav>
<!-- End Navigation -->
<br><br>
<!--Join Us Form-->
<button type="button" class="btn btn-lg btn-block btn-outline-primary col-8 offset-2" data-toggle="collapse" data-target="#join"><h1 class="display-4">Wish to step</h1><h1 class="display-4"> forward with us?</h1></button>
<div id="join" class="collapse">
<div class="container">
<form action="email.phtml" method="post" id="join-us">
<div class="form-group row">
<div class="col-8 offset-2">
<br><label for="name">Your Name</label>
<input type="text" class="form-control" id="name" name="name" placeholder="Your name.." required><br>
<label for="email">Email</label>
<input type="text" class="form-control" id="email" name="email" placeholder="Your email address.." required><br>
<label for="phone">Mobile</label>
<input type="text" class="form-control" id="phone" name="mobile" placeholder="Your mobile number.." required><br>
<label for="link">Linkedin</label>
<input type="text" class="form-control" id="link" name="linkedin" placeholder="Your linkedin address.." required><br>
<label for="gender">Gender</label>
<select id="gender" class="form-control" name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
</select><br>
<label for="subject">Message</label>
<textarea id="subject" class="form-control" name="subject" placeholder="Write your message to us.." style="height:100px" required></textarea><br>
<button type="submit" name="submit" class="btn btn-primary btn-raised">Submit</button>
</div>
</div>
</form>
</div>
</div>
<!--End Join Us Form-->
</body>
</html>