-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDatabaseSetup.jsx
58 lines (56 loc) · 1.48 KB
/
DatabaseSetup.jsx
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
import React from "react";
const DatabaseSetup = () => {
return (
<div className="database_setup pb-3 bg-white rounded-3">
<h6 className="px-4 pt-3 color2 fw500">Setup</h6>
<hr/>
<div className="px-4">
<label htmlFor="Type">Database Type</label>
<br/>
<select name="" id="">
<option value="Postgres">Postgres</option>
</select>
<br/>
<br/>
<label htmlFor="Host">Host</label>
<br/>
<input type="text" placeholder="Host"/>
<br/>
<br/>
<div className="row gx-3">
<div className="col-3">
<label htmlFor="Port">Port</label>
<br/>
<input
className="w-100 text-center"
type="number"
name=""
id=""
placeholder="0000"
/>
</div>
</div>
<br/>
<label htmlFor="Database Name">Database Name</label>
<br/>
<input type="text" placeholder="Host"/>
<br/>
<br/>
<label htmlFor="Username">Username</label>
<br/>
<input type="text" placeholder="Host"/>
<br/>
<br/>
<label htmlFor="Password">Password</label>
<br/>
<input type="text" placeholder="Host"/>
<br/>
<hr/>
<div>
<button className="border-0 text-white w-100">Connect</button>
</div>
</div>
</div>
);
};
export default DatabaseSetup;