forked from AurelioDeRosa/upload-files-github.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<title>Upload files using the GitHub APIs</title>
<link rel="stylesheet" href="css/style.css" />
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
</head>
<body>
<div class="uk-card uk-card-hover uk-card-body">
<div class="uk-card-header uk-align-center">
<h3 class="uk-card-title">Upload Files to CEV Aryavarta Resource Repository</h3>
</div>
<form action="/" method="POST">
<label for="file">Select one or more files:</label>
<input class="uk-button uk-button-default uk-align-center" name="file" id="file" type="file" multiple />
<label for="commit-title uk-align-center">Commit title:</label>
<input id="commit-title uk-align-center" name="commit-title" type="text" />
<input class="uk-button uk-button-primary uk-align-center" type="submit" />
</form>
<div class="uk-card-media-bottom">
<img src="https://www.cevgroup.org/wp-content/uploads/2020/06/cev_logo_01-3.png" alt="">
</div>
</div>
<small class="author">
This code is forked from <a class="uk-button uk-button-link" href="https://github.com/AurelioDeRosa/upload-files-github.js">https://github.com/AurelioDeRosa/upload-files-github.js</a>
</small>
<script src="dist.js" defer async></script>
</body>
</html>