forked from binvant/MakeMyCareer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactCandidate.html
33 lines (27 loc) · 1.07 KB
/
contactCandidate.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Job</title>
<link rel="stylesheet" href="https://codepen.io/gymratpacks/pen/VKzBEp#0">
<link href='https://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="profile.css">
<script src="contactCandidate.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="row">
<form id="file-form">
<div class="col-md-12 widthcss">
<h1> Contact Candidate</h1>
<fieldset>
<legend>Basic Job Info</legend>
<label for="email_body">Email Body:</label>
<input type="text" id="email_body" name="email_body">
</fieldset>
<button type="button" onclick="contactCandidate()">Send email</button>
</div>
</form>
</div>
</body>
</html>