forked from MarineCO/projet_client_taleez
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (48 loc) · 1.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<meta charset="UTF-8">
<title>Extension recruteur Taleez</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="logo.png" alt="logoTaleez" class="image">
<div class="container">
<form enctype='application/json' id="addToJSON">
<div class="form-group">
<label for="name">Nom: </label>
<input id="name" name="name" type="text" class="form-control" >
</div>
<div class="form-group">
<label for="headline">Intitulé: </label>
<input id="headline" name="headline" type="text" class="form-control" >
</div>
<div class="form-group">
<label for="linkedin">Profil linkedin: </label>
<input id="linkedin" name="linkedin" type="text" class="form-control">
</div>
<div class="form-group">
<label for="mail">Email: </label>
<input id="mail" name="mail" type="text" class="form-control">
</div>
<div class="form-group">
<label for="tel">Téléphone: </label>
<input id="tel" name="tel" type="text" class="form-control">
</div>
<div class="form-group">
<label for="competence">Compétences professionnelles</label>
<input id="competence" name="competence" type="text" class="form-control">
</div>
<div class="form-group">
<div class="text-center col-md-12" id="saveDiv">
<input class="btn btn-success btn-lg" type="submit" value="Sauvegarder" id="save">
<span id="status-display" class="statusDisplay"></span>
</div>
</div>
</form>
<div id="result"></div>
</div>
<script src="popup.js"></script>
</body>
</html>