forked from snyk-labs/nodejs-goof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.ejs
35 lines (33 loc) · 856 Bytes
/
layout.ejs
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
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/public/css/screen.css' />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="layout">
<%- body %>
<div id="layout-footer"></div>
</div>
<div id="footer-wrap">
<center>
<form ref='uploadForm'
id='uploadForm'
action='/import'
method='post'
encType="multipart/form-data">
<input type="file" name="importFile" />
<input type='submit' value='Import!' />
</form>
</center>
<div id="footer">
<center>
<a href="/public/about.html">about</a>
</center>
</div>
</div>
</body>
</html>