Files
fnx_web/res/template/paste.html

47 lines
1.3 KiB
HTML
Raw Normal View History

2017-11-10 12:39:55 +01:00
{{define "paste"}}
<!DOCTYPE html>
<html>
<head>
2018-07-09 21:41:17 +02:00
{{template "meta_tags" "Text Upload"}}
{{template "user_style" .}}
2017-11-10 12:39:55 +01:00
<link rel="stylesheet" href="/res/style/viewer.css"/>
<script src="/res/script/jquery-2.1.4.min.js"></script>
2018-07-09 21:41:17 +02:00
<style>
.textarea{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
border: none !important;
2018-07-11 22:46:44 +02:00
background: var(--accent_color_dark);
2018-07-09 21:41:17 +02:00
}
</style>
2017-11-10 12:39:55 +01:00
</head>
<body>
<div id="filepreview">
2018-01-07 21:42:19 +01:00
<textarea id="textarea" class="textarea" placeholder="Your text here..." autofocus="autofocus"></textarea>
2017-11-10 12:39:55 +01:00
</div>
<div id="toolbar">
<!-- Ugly workaround to get rid of the scrollbar in non-webkit browsers -->
<div>
<div>
2018-01-07 21:42:19 +01:00
<button class="toolbar_button button_full_width" onClick="uploadText();">
2017-11-10 12:39:55 +01:00
<img src="/res/img/upload_small.png" alt="Start Upload"/>
<span>Upload</span>
</button>
<a href="/" class="button toolbar_button button_full_width">
<img src="/res/img/pixeldrain_small.png" alt="Visit the home page" style="width:22px; height: 22px;"/>
<span>Home</span>
</a>
{{template "advertisement" .}}
2017-11-10 12:39:55 +01:00
</div>
</div>
</div>
<script src="/res/script/compiled/textupload.js"></script>
{{template "analytics"}}
2017-11-10 12:39:55 +01:00
</body>
</html>
2018-07-09 21:41:17 +02:00
{{end}}