forked from mudchobo/imap-mail-checker-cx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.html
50 lines (48 loc) · 1.65 KB
/
option.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css" />
<style>
body {min-width: 300px;}
</style>
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/jsencrypt.min.js"></script>
<script src="js/option.js"></script>
</head>
<body>
<br />
<div class="container">
<div class="form-group">
<label for="id">IMAP Server</label>
<input type="text" class="form-control" id="imap_server" placeholder="Enter IMAP Server">
</div>
<div class="form-group">
<label for="id">Port</label>
<input type="text" class="form-control" id="imap_port" placeholder="Enter Port" value="993">
</div>
<div class="form-group">
<label for="id">TLS</label>
<select class="form-control" id="imap_tls">
<option value="true">TRUE</option>
<option value="false">FALSE</option>
</select>
</div>
<div class="form-group">
<label for="id">Username</label>
<input type="email" class="form-control" id="id" placeholder="Enter Username">
</div>
<div class="form-group">
<label for="pw">Password</label>
<input type="password" class="form-control" id="pw" placeholder="Password">
</div>
<div class="form-group">
<label for="pw">Enter WebMail Url</label>
<input type="text" class="form-control" id="mail_url" placeholder="ex) http://mail.daum.net">
</div>
<button class="btn btn-default btnSave">저장</button>
</div>
</body>
</html>