-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentor.html
executable file
·83 lines (73 loc) · 3.44 KB
/
mentor.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Colorlib Templates">
<meta name="author" content="Colorlib">
<meta name="keywords" content="Colorlib Templates">
<!-- Title Page-->
<title>Apply for job by Colorlib</title>
<!-- Font special for pages-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<!-- Main CSS-->
<link href="css/mentor.css" rel="stylesheet" media="all">
</head>
<body>
<div class="page-wrapper bg-dark p-t-100 p-b-50">
<div class="wrapper wrapper--w900">
<div class="card card-6">
<div class="card-heading">
<h2 class="title">Apply for mentor position</h2>
</div>
<div class="card-body">
<form method="POST" id="appForm">
<div class="form-row">
<div class="name">Full name</div>
<div class="value">
<input class="input--style-6" type="text" name="full_name">
</div>
</div>
<div class="form-row">
<div class="name">Email address</div>
<div class="value">
<div class="input-group">
<input class="input--style-6" type="email" name="email" placeholder="[email protected]">
</div>
</div>
</div>
<div class="form-row">
<div class="name">Message</div>
<div class="value">
<div class="input-group">
<textarea class="textarea--style-6" name="message" placeholder="Message sent to the employer"></textarea>
</div>
</div>
</div>
<div class="form-row">
<div class="name">Upload CV</div>
<div class="value">
<div class="input-group js-input-file">
<input class="input-file" type="file" name="file_cv" id="file">
<label class="label--file" for="file">Choose file</label>
<span class="input-file__info">No file chosen</span>
</div>
<div class="label--desc">Upload your CV/Resume or any other relevant file. Max file size 50 MB</div>
</div>
</div>
</form>
</div>
<div class="card-footer">
<button class="btn btn--radius-2 btn--blue-2" type="submit">Send Application</button>
</div>
</div>
</div>
</div>
<!-- Jquery JS-->
<script src="js/jquery.min.js"></script>
<!-- Main JS-->
<script src="js/mentor.js"></script>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>
<!-- end document-->