-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregarPelicula.php
37 lines (32 loc) · 1.11 KB
/
agregarPelicula.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
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<title>Agregar Pelicula</title>
</head>
<body>
<form method="post" action="?movie_id=<?=$_GET['id']?>">
<input type="hidden" name="movie_id" value="<?=$_GET['id']?>">
<div class="form-group">
<div>
<label for="titulo">Titulo</label>
<input type="text" name="title" id="title"/>
</div>
<div>
<label for="rating">Rating</label>
<input type="text" name="rating" id="rating"/>
</div>
<div>
<label for="premios">Premios</label>
<input type="text" name="awards" id="awards"/>
</div>
<div>
<label for="length">Duracion</label>
<input type="text" name="length" id="length"/>
</div>
<div>
<label for="duracion">Extreno</label>
<input type="date" name="release_date" id="release_date"/>
</div>
<input type="submit" value="Agregar Pelicula" name="submit"/>
</form>
</body>
</html>