mirror of https://github.com/shadowfacts/type.git
25 lines
627 B
HTML
25 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Type</title>
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<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>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
<script src="/js/index.js"></script>
|
|
</body>
|
|
</html>
|