-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo.html
39 lines (39 loc) · 1.68 KB
/
repo.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
<!DOCTYPE html>
<html>
<head>
<title>Github repository search</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css" />
<link rel="stylesheet" href="assets/css/repo.css" />
</head>
<body>
<div class="container search-container">
<div class="row justify-content-center">
<div class="search-heading">
<h2>Procurando Repositórios no github</h2>
</div>
</div>
</div>
<div class="col-md-auto">
<div class="row justify-content-center">
<div class="col-sm-8">
<div class="input-group input-group-md">
<input id="campo-pesquisa" type="text" class="form-control" placeholder="Digite o nome do repositorio ..." aria-label="ex: Seffrin" autofocus>
</div>
</div>
</div>
</div>
<div class="container results-container">
<div class="row justify-content-center">
<div class="col-sm-8">
<ul id="apresentacao-resultados" class="list-group list-group-flush"></ul>
</div>
</div>
</div>
<script src="https://unpkg.com/@reactivex/[email protected]/dist/global/Rx.js"></script>
<script src="./src/repo.js"></script>
</body>
<footer>
<div class="d-flex justify-content-center">Criado por <a href="https://github.com/cassioseffrin" target=_blank>Cassio Seffrin </a> 27-mar-2020<div/>
</footer>
</html>