-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<title>GitHub Badges</Title>
<link rel="stylesheet" href="style/style.css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">
</head>
<body>
<header>
<div id="side-head">
<h1>GitHub Badges</h1>
<h2>A badge maker for GitHub repositories</h2>
</div>
<div class="inputgroup">
<label for="username">Username: </label>
<br>
<input type="text" name="username" id="user-input" class="input" required>
</div>
<span id="slash">/</span>
<div class="inputgroup">
<label for="repository">Repository: </label>
<br>
<input type="text" name="repository" id="repo-input" class="input" required>
</div>
<!--<button id="badge-button">Make me a badge!</button>-->
</header>
<span id="error">Error</span>
<div id="badge-large" class="badge">
<span class="imgcon"><img class="image" src="//gb-maker.herokuapp.com/makebadge/jman294/github-badges"></span>
<p class="markdown-label">Markdown: </p>
<code class="markdown">[![Github badge](https://gb-maker.herokuapp.com/makebadge/jman294/github-badges)](https://github.com/jman294/github-badges)</code>
</div>
<div id="badge-medium" class="badge">
<span class="imgcon"><img class="image" src="//gb-maker.herokuapp.com/makebadge/medium/jman294/github-badges"></span>
<p class="markdown-label">Markdown: </p>
<code class="markdown">[![Github badge](https://gb-maker.herokuapp.com/makebadge/medium/jman294/github-badges)](https://github.com/jman294/github-badges)</code>
</div>
<div id="badge-small" class="badge">
<span class="imgcon"><img class="image" src="//gb-maker.herokuapp.com/makebadge/small/jman294/github-badges"></span>
<p class="markdown-label">Markdown: </p>
<code class="markdown">[![Github badge](https://gb-maker.herokuapp.com/makebadge/small/jman294/github-badges)](https://github.com/jman294/github-badges)</code>
</div>
<script src="/js/client.js"></script>
</body>
</html>