-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (43 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Personal webpage">
<meta name="author" content="Domingos Dellamonica Jr.">
<title>Domingos Dellamonica Jr.</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1 class="my-4">Domingos Dellamonica Jr.
<small>(Página Pessoal)</small>
</h1>
<img src="assets/img/pic.jpg" width="640px" alt="Foto família">
<p>
Bem-vindo a minha página pessoal!
</p>
<form class="form-inline">
<div class="form-group mx-sm-3 mb-2">
<label for="inputPassword" class="sr-only">
Para acessar os vídeos de família, digite a senha e clique no botão</label>
<input type="password" class="form-control" id="inputPassword" placeholder="Password">
<button type="button" class="btn btn-primary mb-2" onclick="viewVideos()">Assistir</button>
</div>
</form>
<p>
Se deseja conhecer a página da minha empresa, siga o <a href="https://dotproduct.dev">link</a>.
</p>
</div>
<script>
function viewVideos() {
var pass = document.getElementById("inputPassword").value;
var url = "videos.html?key=" + pass;
console.log("redirect to " + url);
window.location.replace(url);
return false;
}
</script>
</body>
</html>