-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformpagina.html
25 lines (25 loc) · 937 Bytes
/
formpagina.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.centrar{
text-align: center;
}
.margin{
margin: 6px;
}
</style>
</head>
<body>
<form action="/controlador.php" method="POST">
<input type="number" name="id" placeholder="id" class="margin"><br>
<input type="text" name="nombre_pagina" placeholder="nombre_pagina" class="margin"><br>
<input type="number" name="capitulos_id" placeholder="capitulos_id" class="margin"><br>
<input type="text" name="contenido" placeholder="contenido" class="margin"><br>
<input type="submit" value="Guardar">
</form>
</body>
</html>