-
Notifications
You must be signed in to change notification settings - Fork 0
/
fbAccountSettings.html
100 lines (82 loc) · 4.27 KB
/
fbAccountSettings.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<title>Untitled</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<!-- Optional theme -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://www.w3schools.com/lib/w3.js"></script>
<style>
</style>
</head>
<body>
<!-- content -->
<div id="facebookAccountSettings" class="tab-pane">
<div class="clearfix col-xs-12">
<p class="text-justify" style="color: #1F355A;">
<!-- content here...-->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Facebook accounts</h3>
</div>
<div class="panel-body">
<table width="100%" border="0" class="table">
<tbody>
<tr>
<td>
<h3 style="text-align: center">Single account:</h3><br>
<form>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-2 col-form-label">Proxy</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
</div>
</div>
<div class="form-group row">
<div class="offset-sm-2 col-sm-10">
<button type="submit" class="btn btn-primary">Save</button>
</div>
</div>
</form>
</td>
<td style="text-align: center">
<h3>Import multiple accounts</h3>
<br>
<span class="glyphicon glyphicon-plus" style="font-size: 50px; color:green;"></span>
<br>
<button type="button" class="btn btn-default btn-sm"><strong>Import multiple accounts</strong></button>
<br> (email,password,proxy)
</td>
</tr>
<tr>
<td colspan="2"><button type="button" class="btn btn-primary btn-block">Check accounts</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</p>
</div>
</div>
<!--end content -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>