-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchoose.html
56 lines (40 loc) · 1.75 KB
/
choose.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<script src="popup.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="login-panel panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Incode Encrypter</h3>
</div>
<div class="panel-body">
<div class="form-group">
<textarea id="input_text" class="form-control" placeholder="Input Text" rows="1"></textarea>
</div>
<div class="col-lg-6">
<button type="button" id="encrypt_button" class="btn btn-primary">Encrypt</button>
<button type="button" id="decrypt_button" class="btn btn-success">Decrypt</button>
</div>
<br>
<div class="form-group" id="op" >
<textarea id="output_text" placeholder="Output Code" class="form-control" rows="1"></textarea>
</div>
<div id="result" style="color:red"></div>
<hr>
<div >
<img src="css/linkedin.png" id="linkedin_page" style="width: 8%">
<img src="css/twitter.png" id="twitter_page" style="width: 8%">
<img src="css/fb.jpg" id="fb_page" style="width: 8%">
</div>
</div>
</div>
</div>
</div>
</body>
</html>