-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
20 lines (20 loc) · 868 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Commit Message Analyzer</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<meta property="og:title" content="Commit Message Analyzer" />
<meta property="og:description" content="How bad are your commit messages ?" />
</head>
<body>
<form>
<label for="url"> Repository base URL :</label>
<input type="text" id="url" name="url">
<input type="submit" value="Analyze">
<a class="github" href="https://github.com/Xwilarg/CommitMessageAnalyzer"><img width="75%" height="75%" alt="GitHub" src="GitHub.png"></a>
</form>
<div class="result"></div>
</body>
<script src="js/commit.js"></script>
</html>