-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.php
26 lines (26 loc) · 848 Bytes
/
album.php
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
<!DOCTYPE html>
<html lang="en">
<title>
Album
</title>
<head>
<body>
<div>
<form action="upload.php" method="POST">
<div>
<input type="text" id="title" name="title" placeholder="Enter Your Title" require="required"><br><br>
</div>
<div>
<input type="text" id="desc" name="desc" placeholder="Description"><br><br>
</div>
<input type="text" name="photo" placeholder="For which type of user Your are publishing for">
<br>
<br>
<div>
<input type="submit" name="submit" value="Publish">
</div>
</form>
</div>
</body>
</head>
</html>