-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewdata.html
32 lines (29 loc) · 1021 Bytes
/
newdata.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
<!DOCTYPE html>
<html>
<head>
<title>Smeargle</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Raleway&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/stylesheets/style.css">
</head>
<body>
<div class="navbar">
<a href="/">Smeargle</a>
<a href="/newdata.html" id="add-image-button">Add Img</a>
<a href="/import.html" id="import">Import</a>
</div>
<div class="blob">
<h2>New Photo</h2>
<hr>
<label>Title</label>
<input type="text" id="form-title">
<label>Image Url</label>
<input type="text" id="form-url">
<label>Other</label>
<input type="text" id="form-other" placeholder="Optional">
<button class="mybutton" id="image-submit">Submit</button>
</div>
<script src="/static/scripts/index.js"></script>
<script src="/static/scripts/newdata.js"></script>
</body>
</html>