-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinsert.html
45 lines (34 loc) · 1.62 KB
/
insert.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
<html>
<head>
<style>
h1 {color:white; ;}
p {color: white;}
.kuk {
/* The image used */
background-image: url("Lock-Screen-Background-HD-Wallpaper-105.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;}
</style>
<br>
<h1>Insert New Record</h1>
</head>
<body class="kuk">
<form action="insert.php" method="POST">
<select id="dr" name="sel">
<option name="hotmail" value="hotmail">Hotmail</options>
<option name="github" value="github">Github</options>
<option name="instagram" value="instagram">Instagram</options>
<option name="twitter" value="twitter">Twitter</options>
<option name="facebook" value="facebook">Facebook</options>
</select>
<input type="text" name="ipu" placeholder="Enter Username">
<input type="password" name="pwo" placeholder="Enter Password">
<button type="submit">Insert</button>
</form>
</body>
</html>