-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
44 lines (39 loc) · 1.36 KB
/
popup.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
<!doctype html>
<html>
<meta charset="utf-8" />
<head>
<title>ez.hr</title>
<script src="popup.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div id="loading">
<img src="https://media.tenor.com/images/d5015577b1133a47299b149b6fab1aaa/tenor.gif" alt="">
</div>
<div id="result">
<h4 id="name">Nome do candidato</h4>
<span class="badge badge-danger" id="status-bad">Candidato já está no pipefy!</span>
<span class="badge badge-primary" id="status-ok">Candidato ainda não está no pipefy!</span>
</div>
</div>
<div class="row" style="margin-top: 10px;">
<button type="button" class="btn btn-dark btn-block" id="checkPage">Buscar candidato!</button>
</div>
<div class="row" style="margin-top: 10px;">
<button type="button" class="btn btn-success btn-block" id="save">Salvar candidato -></button>
</div>
</div>
</body>
</html>
<style>
#loading,
#result,
#status-ok,
#save,
#status-bad {
display: none;
}
</style>