forked from khalid79/email_extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
42 lines (38 loc) · 1.3 KB
/
options.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
<!doctype html>
<html>
<head>
<link href="lib/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="lib/bootstrap/css/bootstrap.css" rel="stylesheet">
<script src="lib/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
</head>
<body>
<h3> Email Extractor Settings </h3>
<div class="span8">
<form class="form-horizontal">
<fieldset>
<legend>RegExp Settings</legend>
<label>Emails RegExp</label>
<input type="text" class="input-xxlarge" placeholder="/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i">
<label>Phone numbers RegExp</label>
<input type="text" class="input-xxlarge" placeholder="/0[1-9]{1}(([0-9]{2}){4})|\+[1-9]{2,3}(([0-9]{2}){4})|([0-9]{2}([\ \.-][0-9]{2}){4})/">
</fieldset>
<hr/>
<fieldset>
<legend>RegExp Settings</legend>
<span class="help-block">Extraction setting:</span>
<label class="checkbox">
<input type="checkbox" checked> Extract Email Addresses
</label>
<label class="checkbox">
<input type="checkbox" checked> Extract Phone Numbers
</label>
</fieldset>
<div class="form-actions">
<button type="submit" class="btn btn-primary">Save changes</button>
<button type="button" class="btn">cancel</button>
</div>
</form>
</div>
</body>
</html>