-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.73 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.73 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta content="initial-scale=1" name="viewport">
<link href="css/font.css" type="text/css" rel="stylesheet">
<link href="css/stylesheet.css" type="text/css" rel="stylesheet">
<script src="js/javascript.js"></script>
<title>Link to DB</title>
</head>
<body>
<form id="dbconnexion" method="post" action="index.php" class="max-width form">
<div id="fromDB" class="fromDB">
<div class="dbType">From</div>
<div class="formLine">
<label for="dbconnexion_dbadress_from" class="icon-server">DataBase Server</label>
<input type="text" placeholder="" id="dbconnexion_dbadress_from" name="dbconnexion_dbadress_from" required />
</div><!--
--><div class="formLine">
<label for="dbconnexion_dbname_from" class="icon-tag">DataBase Name</label>
<input type="text" placeholder="" id="dbconnexion_dbname_from" name="dbconnexion_dbname_from" required />
</div><!--
--><div class="formLine">
<label for="dbconnexion_username_from" class="icon-head">User Name</label>
<input type="text" placeholder="" id="dbconnexion_username_from" name="dbconnexion_username_from" required />
</div><!--
--><div class="formLine">
<label for="dbconnexion_pwd_from" class="icon-lock">Password</label>
<input type="password" placeholder="" id="dbconnexion_pwd_from" name="dbconnexion_pwd_from" required />
</div>
</div>
<div class="toDB">
<div class="dbType">To</div>
unused
</div>
<div class="formActionLine">
<div id="reset" class="btn btn-reset icon-trash">Clear</div>
<div id="submit" class="btn btn-main icon-cloud-download">Download</div>
</div>
<div id="table" class="results"></div>
</form>
</body>
</html>