-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_insert_painting.php
More file actions
56 lines (55 loc) · 2.22 KB
/
admin_insert_painting.php
File metadata and controls
56 lines (55 loc) · 2.22 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
<html>
<head align='center'>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Admin Insert Painting</title>
<link rel="stylesheet" href="css/admin_insert_painting.css" />
<link rel="stylesheet" href="E:/xampp/htdocs/Museum/fonts/fontawesome-free-5.10.2-web/css/all.min.css" />
</head>
<body style="background:url('images/nah.jpg') no-repeat; background-size:100% 100%;">
<center>
<h2>INSERT PAINTING DETAILS</h2>
<div class="data_insert_box">
<form action="admin_insert_painting_code.php" method="POST">
<table>
<tr class="textbox">
<td>PAINTING ID : </td><td><input type="text" placeholder=" Enter Painting ID" name="id" value="" required></td>
</tr>
<tr class="textbox">
<td>DEPARTMENT ID : </td><td><select name="did" required>
<option value="1">History</option>
<option value="2">Zoology</option>
<option value="3">Science and Space</option>
<option value="4">Automobiles</option>
<option value="5">Botany</option>
<option value="6">Geography</option>
</select></td>
</tr>
<tr class="textbox">
<td>ARTIST NAME : </td><td><input type="value" placeholder=" Enter Artist Name" name="artist_name" value="" required></td>
</tr>
<tr class="textbox">
<td>YEAR : </td><td><input type="text" placeholder=" Enter Year" name="year" value="" required></td>
</tr>
<tr class="textbox">
<td>MATERIAL TYPE : </td><td><input type="text" placeholder=" Enter Material Type" name="material" value="" required></td>
</tr>
<tr class="textbox">
<td>STYLE : </td><td><input type="text" placeholder=" Enter Style" name="style" value="" required></td>
</tr>
<tr class="textbox">
<td>TITLE : </td><td><input type="text" placeholder=" Enter Title" name="title" value="" required></td>
</tr>
<tr class="textbox">
<td>TYPE : </td><td><select name="type" required>
<option value="painting">Painting</option>
</select></td>
</tr>
<tr>
<td colspan='2'><input class="btn" type="submit" value="Add"></td>
</tr>
</table>
</form>
</div>
</body>
</html>