mirror of
https://github.com/Lil-Carpi/LDM-ASIR.git
synced 2025-12-06 00:03:48 +00:00
Compare commits
4 Commits
8d14a9dcc1
...
7a8cdf64c6
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a8cdf64c6 | |||
| 1c6701df49 | |||
| 5d323411f6 | |||
| ba6390b3a7 |
@@ -566,3 +566,81 @@ body
|
|||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*========Formularios========*/
|
||||||
|
|
||||||
|
.register-wrapper
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.glass-form-card
|
||||||
|
{
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
backdrop-filter: blur(12px) saturate(180%);
|
||||||
|
-webkit-backdrop-filter: blur(12px) saturate(180%);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
|
||||||
|
padding: 3rem;
|
||||||
|
border-radius: 20px;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 500px;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.glass-form-card::before
|
||||||
|
{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0; left: 0; right: 0; height: 2px;
|
||||||
|
background: linear-gradient(90deg, transparent, #00c3ff, transparent);
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
{
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-label
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
color: #00c3ff;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
padding: 12px 15px;
|
||||||
|
background: rgba(15, 23, 42, 0.6);
|
||||||
|
border: 1ox solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 12px;
|
||||||
|
color: white;
|
||||||
|
font-family: 'Manjari', sans-serif;
|
||||||
|
font-size: 1rem;
|
||||||
|
outline: none;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input::placeholder
|
||||||
|
{
|
||||||
|
color: rgba(255, 255, 255, 0.3)
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-input:focus
|
||||||
|
{
|
||||||
|
border-color: #00c3ff;
|
||||||
|
box-shadow: 0 0 15px rgba(0, 195, 255, 0.2);
|
||||||
|
background: rgba(15, 23, 42, 0.9);
|
||||||
|
}
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="es">
|
<html lang="ca">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title></title>
|
<title>JocsMania - Socis</title>
|
||||||
<link href="assets/css/style.css" rel="stylesheet">
|
<link href="assets/css/style.css" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Manjari:wght@400;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Manjari:wght@400;700&display=swap" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||||
@@ -35,8 +35,42 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="content">
|
<main class="content">
|
||||||
<div class="main-container">
|
<h2 class="section-title">Zona de <span class="highlight-neon">Socis</span></h2>
|
||||||
|
<div class="register-wrapper">
|
||||||
|
<div class="glass-form-card">
|
||||||
|
<form action="videojocsSAD.html">
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="nom" class="form-label">Nom</label>
|
||||||
|
<input type="text" id="nom" name="nom" class="form-input" placeholder="El teu nom" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="cognoms" class="form-label">Cognoms</label>
|
||||||
|
<input type="text" id="cognoms" name="cognoms" class="form-input" placeholder="El teus cognoms" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="dni" class="form-label">DNI</label>
|
||||||
|
<input type="text" id="dni" name="dni" class="form-input" placeholder="00000000X" required pattern="[0-9]{8}[A-Za-z]{1}" title="8 números i una lletra">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="usuari" class="form-label">Usuari</label>
|
||||||
|
<input type="text" id="usuari" name="usuari" class="form-input" placeholder="Escull un nickname" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password" class="form-label">Contrasenya</label>
|
||||||
|
<input type="text" id="password" name="password" class="form-input" placeholder="·········" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-submit-container">
|
||||||
|
<button type="submit" class="btn-neon">Registrar-se <i class="fa-solid fa-arrow-right"></i></button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user