This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.69 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Babelpaste</title>
<meta name="description" content="Bulletproof Paste Service based on the library of babel.">
<!-- Discord Embed -->
<meta content="Babelpaste" property="og:title" />
<meta content="Bulletproof Paste Service based on the library of babel." property="og:description" />
<meta content="https://jcms.dev/babelpaste" property="og:url" />
<meta content="https://jcms.dev/babelpaste/images/background.png" property="og:image" />
<meta content="#570861" data-react-helmet="true" name="theme-color" />
<!-- SEO Tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Links -->
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="utils.css">
<script src="index.js" defer></script>
</head>
<body>
<div class="mainContainer">
<a href="#" class="titleLink">
<h1w class="pageTitle noselect">Babelpaste</h1w>
</a>
<textarea id="textField" class="PasteArea noselect" autocorrect="off" placeholder="Put your paste here"
cols="120" rows="25" maxlength="3200" autofocus></textarea>
<h1 id="alertText" class="alertText"></h1>
<div class="buttons noselect">
<!-- Idea time -->
<!-- Have both buttons be square. -->
<!-- When hovering they expand to a decent size. -->
<a href="info.html">
<button id="infoButton" class="infoButton"></button>
</a>
<button id="submitButton" class="submitButton">(W.I.P.) Create Paste</button>
</div>
<a href="https://github.com/JustCallMeSimon26/babelpaste" class="githubLink">View the Code at Github</a>
</div>
</body>
</html>