-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup_html.php
139 lines (139 loc) · 4.55 KB
/
signup_html.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yummy Donuts Signup</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url('images/bg.jpg');
background-size: cover;
background-position: center;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 90%;
max-width: 900px;
}
.left-side {
padding: 40px;
background: rgba(255, 255, 255, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.left-side img {
width: 200px;
margin-bottom: 40px;
}
.left-side p {
font-size: 14px;
color: #666;
text-align: center;
margin-bottom: 30px;
}
.left-side button {
width: 100%;
padding: 15px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-bottom: 15px;
}
.facebook-btn {
background-color: #4267B2;
color: white;
}
.google-btn {
background-color: #DB4437;
color: white;
}
.right-side {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
.right-side h2 {
margin-bottom: 20px;
color: #333;
}
.right-side input {
width: 100%;
padding: 15px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
.sign-up-btn {
background-color: #28a745;
color: white;
border: none;
padding: 15px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.terms {
margin-top: 15px;
font-size: 12px;
color: #666;
text-align: center;
}
.centro {
display: flex;
justify-content: center;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
.left-side, .right-side {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="left-side">
<a href="index.php"><img src="images/logo.png" alt="PlayONRetro"></a>
<p><strong>Registrarte</strong></p>
<button class="facebook-btn">Registrate con Facebook</button>
<button class="google-btn">Registrate con Google</button>
</div>
<div class="right-side">
<h2>Crea tu usuario!</h2>
<form action="signup.php" method="post">
<input type="text" placeholder="Nombre de Usuario" name="name" required>
<input type="email" placeholder="Direccion de correo" name="email" id="email" required>
<input type="password" placeholder="Contraseña" name="pass" id="pass" required>
<input type="password" placeholder="Repita la contraseña" name="confirm_pass" required>
<div class="centro form-check form-check-inline mb-3">
<label class="form-check-label" for="subscribe">
<input class="form-check-input" type="checkbox" id="subscribe" name="subscribe" value="1">
Suscribirse a PlayONRetro
</label>
</div>
<button type="submit" class="sign-up-btn">Registrarse</button>
<a href="terminos.html" class="terms">Terminos y condiciones</a>
</form>
</div>
</div>
</body>
</html>