-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
124 lines (108 loc) · 5.25 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
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
<!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.0">
<title>Happy&Movie</title>
<link rel="shortcut icon" href="logop.png" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Nunito:wght@600;700;800&display=swap" rel="stylesheet" />
<!-- Icon Font Stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Fuentes del cliente -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- BoxIcons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<style>
label{
margin-top: 15px;
}
</style>
</head>
<body style="background-image: url('back.jpg');">
<img src="" alt="">
<div class="col-xs-12">
<center>
<div class="col-md-4 " style="margin-top: 30px;">
<img src="logop.png" alt="" >
<h1 style="font-size: 40px; color:#FFFFFF; ">Sitio Web <br><b>en Construcción</b></h1><br>
<br><br>
<div>
<!-- <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#myModal">
REGISTRAR
</button> -->
<h4 style="color: #ffffff">¡Nos vemos pronto!</h4>
</div><br><br>
</div><br><br><br>
<div class="row" style="color: #FFFFFF;">
<div class="col-md-4">
<a href="https://www.instagram.com/happyandmovietravel/" target="_blank" style="color: #FFFFFF; text-decoration:none"><h4><i class="fa fa-instagram" style="font-size:30px; color:red"></i> happyandmovietravel</h4></a>
</div>
<div class="col-md-4">
<a href="https://api.whatsapp.com/send?phone=+584248123607&text=%20Te%20asesoramos%20en
%20la%20eleccion%20de%20tus%20viajes." target="_blank" style="text-decoration:none"><h4 style="color: white; "><i class="fa fa-whatsapp" style="font-size:30px; color:red"></i> Whatsapp</h4></a>
</div>
<div class="col-md-4">
<h4><i class="fa fa-phone" style="font-size:30px; color:red"></i> +58 4248123607</h4>
</div>
</div>
</center>
</div>
<div class="modal fade" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h5 class="modal-title"><i class="fa fa-user" style="font-size:20px;"></i> Registrar Usuario</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-6">
<label for="name">Nombre*</label>
<input class="form-control" type="text" placeholder="Ingresar Nombre" id="name" required>
</div>
<div class="col-md-6">
<label for="name">Apellido*</label>
<input class="form-control" type="text" placeholder="Ingresar Apellido" id="name" required>
</div>
</div>
<div class="col-md-12">
<label for="name">Correo electronico*</label>
<input class="form-control" type="email" placeholder="Email" id="name" required>
</div>
<div class="col-md-12">
<label for="name">Telefono*</label>
<input class="form-control" type="number" placeholder="Número de Telefono" id="name">
</div>
<div class="row">
<div class="col-md-6">
<label for="name">Contraseña*</label>
<input class="form-control" type="text" placeholder="Ingresar Nombre" id="name">
</div>
<div class="col-md-6">
<label for="name">Confirmar Contraseña*</label>
<input class="form-control" type="text" placeholder="Ingresar Apellido" id="name">
</div>
</div>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Cancelar</button>
<button type="button" class="btn btn-info" data-bs-dismiss="modal">Registrar</button>
</div>
</div>
</div>
</div>
</body>
</html>