-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_backup.html
36 lines (36 loc) · 1.71 KB
/
form_backup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página con Formulario de Contacto</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link id="theme-style" rel="stylesheet" href="assets/css/from.css">
</head>
<body>
<div class="container mt-5">
<h1>Contacto</h1>
<form id="formulario" action="https://3e08-69-157-250-11.ngrok-free.app/cgi-bin/procesar_formulario.py" method="post" enctype="multipart/form-data">
<div class="mb-3">
<label for="nombre" class="form-label">Nombre:</label>
<input type="text" class="form-control" id="nombre" name="nombre" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email:</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="descripcion" class="form-label">Descripción:</label>
<textarea class="form-control" id="descripcion" name="descripcion" rows="4" required></textarea>
</div>
<div class="mb-3">
<label for="archivo" class="form-label">Adjuntar Archivo:</label>
<input type="file" class="form-control" id="archivo" name="archivo">
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="/script.js"></script>
</body>
</html>