-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·49 lines (40 loc) · 1.69 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
<?php require_once"db.php"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curso php 2023 - Joystick</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<h3>Registro de equipo</h3>
<form action="process.php" method="POST">
<label for="id">ID de usuario (invisible)</label>
<input type="id" name="id" id="id"><br>
<label for="gamertag">Gametarg:</label>
<input type="text" name="gamertag" id="gamertag">
<label for="nombre">Nombre:</label>
<input type="text" name="nombre" id="nombre">
<label for="email">Email:</label>
<input type="email" name="email" id="email">
<label for="file">Anexar archivo:</label>
<input type="file" name="file" id="file">
<label for="juego">Selecciona un juego:</label>
<select name="juego" id="juego">
<option value="valorant">FIFA</option>
<option value="LoL">League of Legends</option>
<option value="WZ2">Warzone 2</option>
<option value="Overwatch 2">Overwatch 2</option>
</select>
<label for="miembros">Numero de miembros:</label>
<input type="range" name="miembros" id="miembros" min="1" max="6" value="1">
<label for="social">Red Social:</label>
<input type="url" name="social" id="social">
<label for="color">Color de Equipo:</label>
<input type="color" name="color" id="color">
<input type="submit" name="submit" value="registrarse">
<input type="reset" name="reset" value="reiniciar">
</form>
</body>
</html>