-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (102 loc) · 5.03 KB
/
index.html
File metadata and controls
115 lines (102 loc) · 5.03 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Github Finder</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<!-- Custom CSS -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="background-image">
<div class="background-image__overlay"></div>
</div>
<div class="app-container pt-5">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-lg-9 col-sm-12">
<header class="d-flex justify-content-center">
<h1 class="text-light">Github Finder</h1>
</header>
<div id="alert-container" class="mt-4 mb-4">
<!-- Alert will render from JS -->
</div>
<form class="mt-3" id="search-form">
<div class="form-row">
<div class="col-sm-10">
<input type="text" class="form-control shadow-none font-weight-light text-white" name="user-input"
autocomplete="off" placeholder="Enter Username...">
</div>
<div class="col">
<button type="button"
class="search-btn btn btn-dark btn-block shadow-none font-weight-light">Search</button>
</div>
</div>
</form>
<div id="profile" class="mt-5">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="card">
<img class="card-img-top" src="https://avatars2.githubusercontent.com/u/9199600?v=4"
alt="User Profile Image">
<div class="card-body">
<h5 class="card-title text-color">EzeGGonzalez</h5>
<a href="https://github.com/EzeGGonzalez" target="_blank" class="btn btn-dark btn-block">View
GitHub</a>
</div>
</div>
</div>
<div class="col-md-7">
<div class="card profile-details">
<div class="card-inner">
<div class="badges">
<span class="badge badge-dark">Public Repos: <span id='public-repos'> 19</span></span>
<span class="badge badge-dark">Followers: <span id='followers'> 19</span></span>
<span class="badge badge-dark">Following: <span id='following'> 19</span></span>
</div>
<div class="repos">
<h3 class="mt-5 mb-3">Latest Repos</h3>
<div class="list-group">
<a href="https://github.com/EzeGGonzalez/cw" target="_blank"
class="list-group-item list-group-item-action">cw</a><a
href="https://github.com/EzeGGonzalez/bulma" target="_blank"
class="list-group-item list-group-item-action">bulma</a><a
href="https://github.com/EzeGGonzalez/the-road-to-learn-react-spanish" target="_blank"
class="list-group-item list-group-item-action">the-road-to-learn-react-spanish</a><a
href="https://github.com/EzeGGonzalez/vbn" target="_blank"
class="list-group-item list-group-item-action">vbn</a><a
href="https://github.com/EzeGGonzalez/pruebamil" target="_blank"
class="list-group-item list-group-item-action">pruebamil</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"
integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T"
crossorigin="anonymous"></script>
<script src="dom-github.js"></script>
</body>
</html>