-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaste.html
48 lines (48 loc) · 2.01 KB
/
paste.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
<!DOCTYPE html>
<html>
<head>
<title>
Senarc PasteBin
</title>
<link rel="stylesheet" href="assets/css/policy.css">
</head>
<div class="perspective effect-rotate-left">
<div class="container"><div class="outer-nav--return"></div>
<div id="viewport" class="l-viewport">
<div class="l-wrapper">
<header class="header">
<a class="header--logo" href="#0">
<img src="assets/img/logo.png" alt="Senarc">
<p>Senarc</p>
</a>
</header>
<br/>
<br/>
<form action="" id="PasteRequest">
<label for="content" style="font-size: 60px;">Create your Pastebin page:</label>
<br/>
<br/>
<label for="title">Title:</label>
<input id="title" name="title" type="text" placeholder="Enter your title" style="background-color: #002B36; color: #839496; font-size: 15px;">
<br/>
<label for="description">Description:</label>
<input id="description" name="description" type="text" placeholder="What is the paste about?" style="background-color: #002B36; color: #839496; font-size: 15px;">
<br/>
<label for="text-colour">Text Colour:</label>
<input id="text-colour" name="text-colour" value="#839496" type="color">
<br/>
<label for="background-colour">Background Colour:</label>
<input id="background-colour" name="background-colour" value="#002B36" type="color">
<br/>
<label for="embed-colour">Embed Colour:</label>
<input id="embed-colour" name="embed-colour" value="#90B5F8" type="color">
<pre><textarea type="txt" name="content" rows="99999999999999999999999999999999999" id="content" style="height: 300px; width: 99%; padding-bottom: 10px; background-color: #002B36; color: #839496;"></textarea></pre>
<button style="text-align: center; height: 50px; width: 99%; color: #839496; background-color: #002B36; font-size: 20px;" type="submit">Create</button>
</form>
</div>
</div>
</div>
</div>
<script src="assets/js/post.js"></script>
</body>
</html>