-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathañadir.html
More file actions
59 lines (53 loc) · 2.47 KB
/
añadir.html
File metadata and controls
59 lines (53 loc) · 2.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PromoDurango</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="registro.css">
</head>
<body>
<a href="index.html"> <h1 class="title">PromoDurango</h1></a>
<div class="login-form">
<form action="" method="post">
<div class="avatar">
<img src="Imagenes/marca/isotipo-blanco.png" alt="icono">
</div>
<h2 class="text-center">Añadir restaurante</h2>
<div class="form-group">
<input type="text" class="form-control" name="nombre" placeholder="Nombre restaurante" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="descripcion" placeholder="Descripcion" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="imagen" placeholder="Imagen" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="mapa" placeholder="Mapa" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="facebook" placeholder="Facebook">
</div>
<div class="form-group">
<input type="text" class="form-control" name="twitter" placeholder="Twitter">
</div>
<div class="form-group">
<input type="text" class="form-control" name="instagram" placeholder="Instagram">
</div>
<div class="form-group">
<input type="password" class="form-control" name="pwd" placeholder="Ingresa tu contraseña" required="required">
</div>
<div class="form-group">
<button name="restaurant-submit" type="submit" class="btn btn-primary btn-lg btn-block">Añadir establecimiento </button>
</div>
</form>
</div>
</body>
</html>