-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
26 lines (26 loc) · 1.05 KB
/
upload.html
File metadata and controls
26 lines (26 loc) · 1.05 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>Upload Story</title>
<link type="text/css" href="{{ url_for('static', filename= 'css/main.css') }}" rel="stylesheet" />
<link type="text/css" href="{{ url_for('static', filename= 'css/Site.css') }}" rel="stylesheet" />
<script src="{{ url_for('static', filename= 'js/jquery.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/upload.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/main.js') }}"></script>
</head>
<body>
{% include 'header.html' %}
<div id="body">
<div id= "darker_background">
<section class="content-wrapper main-content clear-fix">
<label for="title">Title: </label>
<input type="text" id="title" />
<label for="content">Story:</label>
<textarea id="content" cols="50" rows="20"></textarea>
<br />
<input type="button" value="Submit" id="submitStory" />
</section>
</div>
</div>
</body>
</html>