-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataentry.html
58 lines (43 loc) · 1.68 KB
/
dataentry.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MyEx.AI</title>
<link rel="stylesheet" href="./src/styles/common.css">
<link rel="stylesheet" href="./dataentry.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
</head>
<body>
<h3>Add data</h3>
<form class="main-div">
<fieldset class="form-group">
<legend>Name</legend>
<input class="form-control" id="inputEmail" placeholder="Name">
</fieldset>
<fieldset>
<legend>Social media profiles</legend>
<label>Facebook</label><input class="form-control" id="inputEmail" placeholder="Facebook ID">
<label>Twitter</label><input class="form-control" id="inputPassword" placeholder="Twitter ID">
<label>Instagram</label><input class="form-control" id="inputPassword" placeholder="Instagram ID">
</fieldset>
<fieldset id='private'>
<legend>Private conversations</legend>
<label class='up-label'>Facebook</label>
<div class="upload-btn-wrapper">
<button class="btn">Upload</button>
<input type="file" name="myfile" />
</div>
<label class='up-label'>WhatsApp</label>
<div class="upload-btn-wrapper">
<button class="btn">Upload</button>
<input type="file" name="myfile" />
</div>
<label class='up-label'>Telegram</label>
<div class="upload-btn-wrapper">
<button class="btn">Upload</button>
<input type="file" name="myfile" />
</div>
</fieldset>
<button type="submit" class="btn-primary">Create A.I.</button>
</form>
</html>