-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.php
43 lines (40 loc) · 1.17 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Registro Requerido</title>
<link rel="stylesheet" href="assets/css/catalogo.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<script src="assets/js/jquery-v1.10.2.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<style>
h1
{
font-size: 24px;
color: green;
text-align: center;
}
#ainfo
{
margin: 25px;
padding: 25px;
font-size: 18px;
font-weight: bold;
color: #0099FF;
text-align: center;
}
.contenedor-index
{
margin-top: 25px;
padding: 25px;
}
</style>
</head>
<body>
<?php include_once 'Includes/header.php'; ?>
<div class="contenedor-index">
<h1>PARA EFECTUAR UNA COMPRA NECESITAS REGISTRARTE!</h1>
<a id="ainfo" href="registrocliente.php">Registrarme Ahora!</a>
</div>
</body>
</html>