-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_database_connection.html
More file actions
62 lines (47 loc) · 2.37 KB
/
setup_database_connection.html
File metadata and controls
62 lines (47 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<title>UnicodeCleaner: Set-up database connection</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="js/setup_database_connection.js"></script>
<body>
<div class="w3-container w3-flat-belize-hole">
<h2>UnicodeCleaner - Set-up database connection</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li class="active"><a href="setup_database_connection.html">DB Connection</a></li>
<li><a href="select_table_column.html">Select Table & Column</a></li>
<li><a href="clean_iconv.html">Clean by Iconv</a></li>
<li><a href="clean_translation_table.html">Clean by Translation Table</a></li>
</ul>
<p>Grant access to your database. Your logon information will be stored on YOUR webserver. </p>
<p> </p>
<form id="form-db-connection" enctype="multipart/form-data">
<label for="host">Host: </label>
<input type="text" name="host" id="host">
<label for="username">Username: </label>
<input type="text" name="username" id="username">
<label for="password">Password: </label>
<input type="password" name="password" id="password">
<label for="db">Database: </label>
<input type="text" name="db" id="db">
<label for="port">Port: </label>
<input type="text" name="port" id="port">
<br><br>
<button type="submit" value="Connect" id="submit">Connect</button>
</form>
<p> </p>
<p id="sys-message"></p>
<p> </p>
</div>
<div id="loader"></div>
<p id="result"></p>
<p id="pagination"></p>
<div id="datatable">
<table id="table_id" class="display">
</table>
</div>
</body>
</html>