-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·74 lines (68 loc) · 3.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Specified</title>
<meta content="width=device-width,initial-scale=1" name="viewport"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" rel="stylesheet">
<link
rel="stylesheet"
href="https://unpkg.com/dropzone@5/dist/min/dropzone.min.css"
type="text/css"
/>
<link href="static/css/themes.css" rel="stylesheet" >
<link href="static/css/main.css" rel="stylesheet">
<link href="static/css/landing.css" rel="stylesheet">
<link rel="shortcut icon" href="assets/specify-glass-dynamic.svg" />
<link rel="icon" href="assets/specify-glass-black-256x256.png" media="(prefers-color-scheme light)" />
<link rel="icon" href="assets/specify-glass-black-256x256.png" media="(prefers-color-scheme dark)" />
</head>
<body>
<div id="main">
<div class="header-homepage">
<div>
<img src="assets/logo.png" >
</div>
</div>
<main>
<article class="homepage-homepage">
<section><h2>Viewer</h2>
<p>This website is an online viewer for Specify data.</p>
<p>In order to use it:</p>
<ol>
<li>Generate a json via Specify
</li>
</ol>
<form id="upload-form" action="manualupload.php" method="POST" enctype="multipart/form-data">
<label for="input-file-now" tabindex="0" id="upload-box" class="textbox file-picker file-upload-wrapper">
<input type="file" id="input-file-now" class="file-upload" style="display: none;" name="specify"
data-mdb-height="500" data-mdb-file-upload="file-upload">
<p id="drag-text">Drag & drop a json file here or click to select</p>
<em>(only<code>Specify json </code> <!-- -->files are accepted)</em>
</input>
</label>
</form>
</section>
<nav><a class="link" href="https://github.com/Spec-ify/specify/releases" target="_blank">
<div class="link-title">
<img height="45em"src="assets/dl.png">
<h3>Downloads</h3></div>
<div class="link-description">Download the latest version of Specify.</div>
</a></nav>
<section><h2>About</h2>
<p>Specify is a snapshot viewer</p>
<p>More information about Specify can be found on<!-- --> <a
href="https://github.com/Spec-ify" target="_blank">GitHub</a>, or you can come chat with us on<!-- --> <a
href="https://rtech.support/discord" target="_blank">Discord</a>.</p></section>
</article>
</main>
<span>Massive Shoutout to <a href="https://spark.lucko.me/" target="_blank">Spark</a></span>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.js"
type="text/javascript"
></script>
<script defer="defer" src="static/js/upload.js"></script>
</body>
</html>