-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<script type="text/javascript" src=js\homebanking.js></script>
<title>HOME BANKING</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--Link/button para cambiar el idioma-->
<a href="English/index_EN.html" class="ChangeLanguageButton" onclick="changeLanguage()">English</a>
<div class="header">
<img class="logo" src="img/logo.png"/>
<div class="align-left">
<span id="nombre">Bienvenido/a</span>
<img class="avatar" src="img/avatar.svg"/>
</div>
</div>
<div class="white-container">
<div class="menu-container">
<h1 class="tu-cuenta">Tu cuenta</h1>
<button class="links" onclick="extraerDinero()">Extraer dinero</button>
<button class="links" onclick="depositarDinero()">Depositar dinero</button>
<button class="links" onclick="pagarServicio()">Pagar servicios</button>
<button class="links" onclick="transferirDinero()">Transferir dinero</button>
<button class="links" onclick="cambiarLimiteDeExtraccion()">Cambiar límite de extracción</button>
</div>
<div class="green-container">
<div class="cuenta-info">
<p>Saldo en tu cuenta</p>
<h3 id="saldo-cuenta">$</h3>
<p id="limite-extraccion">Tu límite de extracción es: </p>
</div>
</div>
</div>
</body>
</html>