-
Notifications
You must be signed in to change notification settings - Fork 0
/
apply.html
130 lines (128 loc) · 4.17 KB
/
apply.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Patanjali Distributors</title>
<link href="https://fonts.googleapis.com/css?family=KoHo" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
</head>
<body>
<!--
<div id="contact-bar">
<p>Call: 1000000000</p>
<p>Mail: info@xyz.org</p>
</div>-->
<nav>
<a href="index.html"><img id="logo" src="logo.png" /> </a>
<ul id="navlist">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About Us</li></a>
<a href="contact.html"><li>Contact</li></a>
<li class="active">Apply Now</li>
<a href="products.html"><li>Products</li></a>
</ul>
</nav>
<div>
<button id="slide-button">Next</button>
<img class="cover" src="images/cover1.jpg" />
<h1>Join Us</h1>
<form>
<p class="label">First Name:</p>
<input id="apply-fname" type="text" /> <br /><br />
<p class="label">Last Name:</p>
<input id="apply-sname" type="text" /> <br /><br />
<p class="label">Mobile Number:</p>
<input id="apply-number" type="text" /><br /><br />
<p class="label">Email Address:</p>
<input id="apply-email" type="email" /> <br /><br />
<p class="label">Address:</p>
<textarea id="apply-address" rows="10" cols="45"> </textarea>
<p class="label">Pincode:</p>
<input id="apply-pincode" type="text" /> <br /><br />
<!--
Select Inputs
-->
<p class="label">Apply For:</p>
<select id="apply-for">
<option>Please Select:</option>
<option>Distributor</option>
<option>Dealership</option>
<option>Mega Store</option>
<option>Retail Store</option>
</select>
<br /><br />
<p class="label">Distributor Level:</p>
<select id="distributor-level">
<option>Please Select:</option>
<option>District Level</option>
<option>Tehsil Level</option>
<option>Mandi Level</option>
</select>
<br /><br />
<p class="label">Expected Investment:</p>
<input id="expected-investment" type="text" /> <br /><br />
<p class="label">Comments:</p>
<textarea id="apply-comments" rows="10" cols="45"></textarea>
</form>
<button id="apply-submit-button">Submit</button>
</div>
<footer>
<div class="footer-contacts">
<div>
<h3>Useful Links</h3>
<a href="#"><p>Home</p></a>
<a href="about.html"><p>About Us</p></a>
<a href="contact.html"><p>Contact</p></a>
<a href="apply.html"><p>Apply Now</p></a>
<a href="products.html"><p>Products</p></a>
</div>
<br />
<div>
<h3>Contacts</h3>
<a href="tel:+919674820528"
><p>
<i class="fas fa-phone"></i> <b>Phone: </b><br />+91 9674820528
</p></a
><br />
<a href="mailto:info@patanjalifranchise.store"
><p>
<i class="fas fa-envelope"></i> <b>Email: </b
><br />info@patanjalifranchise.store
</p></a
>
</div>
<br />
<p class="footer-address">
<b><i class="fas fa-map-marker-alt"></i> Address: </b><br /><br />
PATANJALI AYURVEDA LIMITED Unit -111 Patanjali food & Herbal Park Vll-
padartha, Laskar Road, Haridwar UTTARAKHAND- 249404 CIN :-
U24237DL2006PLG144789
</p>
</div>
<br />
<div class="footer-flex">
<span>Copyright © 2019, Patanjali Distributors</span>
<div>
<a href="https://www.facebook.com/PatanjaliAyurved.net/"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://twitter.com/PypAyurved"
><i class="fab fa-twitter"></i
></a>
<a href="https://www.instagram.com/patanjaliproducts"
><i class="fab fa-instagram"></i
></a>
</div>
</div>
</footer>
<script src="apply.js"></script>
</body>