-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (96 loc) · 4.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
<link rel="stylesheet" href="app.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#383b75"
},
"button": {
"background": "#f1d600"
}
},
"position": "bottom-right"
})});
</script>
<title>Just A Sentence: Don't look behind. Write!</title>
</head>
<body >
<div id="app">
<main role="main" class="container app--title">
<div>
<h1>
Just A Sentence
</h1>
<p class="lead">Don't look behind. Write! This page is being shutdown, if you are actively using it, let me now using github or email.</p>
</div>
</main>
<div class="container">
<div class="row">
<div class="col-12 d-table" >
<div class="d-table-cell align-middle">
<div class="form-group">
<input class="form-control input-lg" v-model="current" placeholder="You can do it!" type="text" v-on:keyup.enter="onEnter">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<a class="btn btn-primary" role="button" href="#" title="Copy all to Clipboard" @click.prevent="copy">Copy All</a>
<a class="btn btn-warning" role="button" href="#" title="Copy all to Clipboard and delete content" @click.prevent="copyAndDelete">Cut</a>
</div>
</div>
</div>
<div class="container" style="visibility: hidden">
<div class="row">
<div class="col-12">
<div class="align-middle">
<div class="form-group">
<textarea id="history" class="form-control input-lg" v-model="historyString" type="text"></textarea>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container">
<div class="row">
<div class="col-12">
<p class="text-muted">
All your data is saved locally.
</p>
</div>
</div>
</div>
-->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-4">
<a target="_blank" rel="noopener noreferrer" style="text-decoration: none;" href="https://github.com/prathje/just-a-sentence" title="View on Github">
View on Github
</a>
</div>
<div class="col-4">
<a style="text-decoration: none;" href="mailto:[email protected]?subject=Just%20A%20Sentence%20" title="Contact">
Contact
</a>
</div>
</div>
<div class="d-flex justify-content-around justify-content-lg-between">
</div>
</div>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>