Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!doctype HTML>
<html>
<head>
<meta charset="utf-8">
<title>Plantilla de aplicación</title>
<link rel="icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<?php include 'header.php' ?>
<h2>Registro de usuario</h2>
<hr>
<form id="register-form">
<div class="form-group">
<label for="name">Nombre:</label>
<input type="text" name="name" required>
</div>
<div class="form-group">
<label for="surname">Apellidos:</label>
<input type="text" name="surname" required>
</div>
<div class="form-group">
<label for="submit">Registrarse:</label>
<input type="submit" name="submit">
</div>
</form>
<?php include 'footer.php' ?>
<script scr="js/scripts-js"></script>
</body>
</html>