A really basic shared text area with encryption.
...and not much else. If you want to hack on something this is a great place to start.
This commit is contained in:
27
www/text/index.html
Normal file
27
www/text/index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||||
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
||||
<style>
|
||||
*{
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
textarea{
|
||||
box-sizing: border-box;
|
||||
border: 1px solid blue;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
|
||||
font-size: 25px;
|
||||
background-color: #222;
|
||||
color: #CCC;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<textarea></textarea>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user