type/index.html

25 lines
627 B
HTML
Raw Normal View History

2016-09-28 22:33:02 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2016-10-01 15:04:20 +00:00
<title>Type</title>
2016-10-01 15:06:18 +00:00
<link rel="stylesheet" href="/css/main.css">
2016-09-28 22:33:02 +00:00
</head>
<body>
2016-10-01 15:26:40 +00:00
<form id="form">
<input type="text" id="repo" placeholder="owner/repo" required="true">
<br>
<input type="text" id="branch" value="master" placeholder="master" required="true">
<br>
<input type="text" id="file" placeholder="path/to/file.js" required="true">
<br>
<input type="submit" id="type" value="Type">
</form>
2016-09-29 16:24:15 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
2016-10-01 15:26:40 +00:00
<script src="/js/index.js"></script>
2016-09-28 22:33:02 +00:00
</body>
2016-09-30 23:14:03 +00:00
</html>