-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.01 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Login Vane</title>
<link rel="stylesheet" href="./styles.css">
<!-- jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./app.js"></script>
<!--<script>
$(document).ready(function(){ //deje que cargue la pagna
alert("jQuery esta funcionando !!");
$("button").click(function(){
$(this).slideUp();
});
});
</script>-->
</head>
<body>
<h1>Bienvenido a mi intento, por favor identifiquese</h1>
<div class="cajaGrandota">
<div class="miClase">
<p>USUARIO</p>
<input type="text" name="User1" value="">
<p>PASSWORD</p>
<input type="password" name="password1" value="">
<br>
<!--<a href="/home/vgonzalezd/loginVane/OtraPagina.html">-->
<button type="button" name="button1" id="button1">Enter</button>
</a>
</div>
</div>
</body>
</html>