-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathsendtext.html
More file actions
27 lines (26 loc) · 1008 Bytes
/
sendtext.html
File metadata and controls
27 lines (26 loc) · 1008 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Send Text</title>
<script type="text/javascript" src="../../quiet.js"></script>
<script type="text/javascript" src="sendtext.js"></script>
<script async type="text/javascript" src="../../quiet-emscripten.js"></script>
</head>
<body>
<div class="hidden" data-quiet-profile-name="audible"></div>
<div class="wrapper">
<header>
<h1>Send Text</h1>
</header>
<section>
<div class="hidden" data-quiet-warning></div>
<div class="form-group">
<textarea autofocus="true" autocapitalize="none" autocomplete="off" spellcheck="off" class="form-control" style="resize:none" rows="5" data-quiet-text-input></textarea>
</div>
<button type="button" class="btn btn-default" style="width:100%" data-quiet-send-button data-quiet-sending-text="Sending...">Send</button>
</section>
</div>
</body>
</html>