-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
147 lines (129 loc) · 5.29 KB
/
formulario.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formularios</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
form {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
padding: 20px;
box-sizing: border-box;
animation: fadeIn 0.5s ease-in-out;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
margin-top: 20px; /* Añade un salto de línea antes del h1 */
}
#salto{
text-align: center;
color: #333;
margin-bottom: 20px;
margin-top: 20px; /* Añade un salto de línea antes del h1 */
}
label {
display: block;
margin: 10px 0;
font-weight: bold;
}
input,
textarea,
select {
width: calc(100% - 16px);
padding: 8px;
margin-bottom: 10px;
box-sizing: border-box;
}
input[type="checkbox"] {
width: auto;
}
input[type="submit"],
input[type="reset"] {
background-color: #4caf50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
input[type="submit"]:hover,
input[type="reset"]:hover {
background-color: #45a049;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<h1>What do you think about me?</h1> <br><br><br>
<h1 id="salto"><a href="index.html"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"/></svg>Regresar</a>
</h1>
<form name="formulario" action="submit.php" method="post" enctype="multipart/form-data">
<label for="nombre_usuario">Teclee su nombre:</label>
<input type="text" name="nombre_usuario" id="nombre_usuario" maxlength="50">
<label for="clave">Teclee su clave:</label>
<input type="password" name="clave" id="clave" maxlength="25">
<label for="opinion">Opine sobre mi página:</label>
<textarea name="opinion" id="opinion" cols="50" rows="5" wrap="virtual"></textarea>
<input type="hidden" name="escondido" value="oculto">
<label for="adulto">Indique si es mayor de edad:</label>
<input type="checkbox" name="adulto" id="adulto" value="si" checked>
<label>Género:</label>
<input type="radio" name="sexo" id="masculino" value="m" checked>
<label for="masculino">Masculino</label>
<input type="radio" name="sexo" id="femenino" value="f">
<label for="femenino">Femenino</label>
<label>Sueldo anual:</label>
<input type="radio" name="sueldo" id="10_20" value="10-20" checked>
<label for="10_20">De 10000 a 20000 €</label>
<input type="radio" name="sueldo" id="20_mas" value="20">
<label for="20_mas">Más de 20000 €</label>
<label for="archivo">Envíe un fichero:</label>
<input type="file" name="archivo" id="archivo" maxlength="100">
<label for="provincia">Indique su provincia:</label>
<select name="provincia" id="provincia">
<option value="1">Madrid</option>
<option value="2">Barcelona</option>
<option value="3">Toledo</option>
<option value="4">Canarias</option>
<option value="5">Zaragoza</option>
<option value="6">Otras</option>
</select>
<label for="pasatiempo">Indique su Hobbie:</label>
<select name="pasatiempo" id="pasatiempo" size="3">
<option value="1">Chat</option>
<option value="2">Juegos</option>
<option value="3">Arte</option>
<option value="4">Cine</option>
<option value="5">Poesía</option>
<option value="6">Otros</option>
</select>
<br>
<input type="submit" name="mandar" value="Enviar">
<input type="reset" name="borrado" value="Borrar">
</form>
<br><br>
</body>
</html>