forked from Laboratoria/BOG001-social-network
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b0a1b1
commit a505b25
Showing
6 changed files
with
132 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,53 @@ | |
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Document</title> | ||
<title>HELIVISUEL</title> | ||
</head> | ||
<body> | ||
<!--CREA UNA NUEVA CUENTA--> | ||
<div id="account" class="accountOne" style="display: none;"> | ||
<section id="createAccount"> | ||
<h1>Crea una nueva Cuenta</h1> | ||
|
||
<h2>Username</h2> | ||
<input type="text" id="nameUser" class="controls" placeholder="Nombre de Usuario"/> | ||
|
||
<h2>Email</h2> | ||
<input type="text" id="correo" class="controls" placeholder="[email protected]"/> | ||
|
||
<h2>Password</h2> | ||
<input type="text" id="contraseña" class="controls" placeholder="*********"/> | ||
|
||
<h2>Birth Date</h2> | ||
<input type="text" id="birthday" class="controls" placeholder="27/08/20"/> | ||
|
||
<div id="hi"> | ||
<button id="buttonOne" class="startButton">REGISTRARSE</button> | ||
</div> | ||
|
||
</section> | ||
</div> | ||
|
||
<!--GRACIAS--> | ||
<div id="thanks" class="thanku" style="display: block;"> | ||
<section id="thankAccount"> | ||
|
||
<img src="img/besticono.png" id="icono"> | ||
<h1>Gracias por crear una cuenta</h1> | ||
|
||
<div id="th"> | ||
<button id="continue" class="buttonContinue">CONTINUAR</button> | ||
</div> | ||
|
||
</section> | ||
</div> | ||
|
||
<footer> | ||
©2020, Todos los derechos reservados - |D.D.C| - HELIVISUEL | ||
</footer> | ||
|
||
<script type="module" src="main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
|
||
import { myFunction } from './lib/index.js'; | ||
|
||
myFunction(); | ||
myFunction(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Share:wght@700&display=swap'); | ||
|
||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Share', cursive; | ||
/*background: black;*/ | ||
} | ||
footer { | ||
height: 40px; | ||
line-height: 20px; | ||
font-size: 12px; | ||
background: black; | ||
border-top:2px solid white; | ||
color: white; | ||
text-align: center; | ||
justify-content: center; | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
margin:auto; | ||
z-index: 10; | ||
} | ||
#createAccount{ | ||
color:white; | ||
font-size: 12px; | ||
display: flex; | ||
margin-left:30%; | ||
margin-top:10%; | ||
position:absolute; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
.startButton { | ||
color: #fff; | ||
height: 30px; | ||
line-height: 30px; | ||
margin-top: 10% ; | ||
margin-left: 25%; | ||
position: absolute; | ||
border-radius: 10px; | ||
background: rgb(39, 131, 206); | ||
font-family:'Share', cursive; | ||
/*z-index: -1;*/ | ||
} | ||
.controls{ | ||
background: black; | ||
border-bottom: 1px solid white ; | ||
} | ||
|
||
#thankAccount{ | ||
background: transparent; | ||
color:white; | ||
font-size: 12px; | ||
display: flex; | ||
margin-left:25%; | ||
margin-top:20%; | ||
position:absolute; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
.buttonContinue { | ||
color: #fff; | ||
height: 30px; | ||
line-height: 30px; | ||
margin-top: 10% ; | ||
margin-left: 30%; | ||
position: absolute; | ||
border-radius: 10px; | ||
background: rgb(39, 131, 206); | ||
font-family:'Share', cursive; | ||
/*z-index: -1;*/ | ||
} | ||
#icono{ | ||
height: 50%; | ||
width: 70%; | ||
margin-left: 15%; | ||
} | ||
body { | ||
background: url("img/fondovhs.png"); | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
background-size: 100vw 100vh; | ||
} |