forked from cryptii/cryptii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.html
81 lines (69 loc) · 2.39 KB
/
local.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fast converting, encrypting and decrypting — Cryptii</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/default.css" media="screen">
<link rel="stylesheet" href="css/jquery.ui.slider.min.css" media="screen">
</head>
<body>
<div id="frame">
<div id="wrapper">
<hgroup>
<h1>
<a href="http://cryptii.com/">Cryptii</a>
<span class="local">local</span>
</h1>
</hgroup>
<div id="about">
<p>
Designed and coded with <3<br>
Brought to you by <a href="http://fraenz.frieder.es/" target="_blank">ffraenz</a>
</p>
<div id="social">
<a class="facebook" href="https://facebook.com/thetwof" target="_blank">
<span>Find the2f on Facebook</span></a>
<a class="twitter" href="https://twitter.com/ffraenz" target="_blank">
<span>Follow @ffraenz on Twitter</span></a>
<a class="gittip" href="https://www.gittip.com/ffraenz/" target="_blank">
<span>Find ffraenz on Gittip</span></a>
</div>
</div>
<p class="intro">
Don't leave your messages plaintext on public places.
Cryptii is an OpenSource web application under the
<a href="https://github.com/the2f/Cryptii#license" target="_blank">MIT license</a>
where you can convert, encrypt and decrypt content between different format systems.
This happens fully in your browser using
<a href="http://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a>,
no content will be sent to any kind of server.
Any feedback appreciated, just leave me a tweet or contribute to this project
— <a href="http://cryptii.com/">Use online version</a>
</p>
<div id="application"></div>
</div>
</div>
<!-- fork me -->
<a href="https://github.com/the2f/Cryptii" id="forkme" target="_blank">Fork me on GitHub</a>
<!-- include jquery and plugins -->
<script>
// use hash fallback (local use)
var History = {
options: {
html4Mode: true,
disableSuid: true
}
};
</script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.ui.slider.min.js"></script>
<script src="js/jquery.history.js"></script>
<!-- include main application -->
<script src="js/cryptii.min.js"></script>
<script>
// start application
cryptii.init();
</script>
</body>
</html>