-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (100 loc) · 3.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<body>
<title>Login</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
.fakeimg {
height: 150px;
width: fit-content;
background: #aaa;
}
</style>
<script defer src="loginScript.js"></script>
</head>
<body>
<div class="p-3 bg-primary text-white text-center">
<h3>Dragos-Gabriel Danciulescu - Online Portfolio</h3>
<p>Feel free to look around!</p>
</div>
<!-- up navbar
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="presentation.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="projects.html">Personal Projects</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="volunteering.html">Volunteering</a>
</li>
</ul>
</div>
</nav>
-->
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<!-- left navbar
<h2 class="mt-4">Links to jump around</h2>
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a class="nav-link" href="presentation.html">
<button class="btn default">Home</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">
<button class="btn default">Education</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">
<button class="btn default">Personal Projects</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="volunteering.html">
<button class="btn default">Volunteering</button>
</a>
</li>
</ul>
<hr class="d-sm-none" />
</div>
-->
</div>
</div>
<div id="error"></div>
<form id="form" target="_blank" action="presentation.html" method="GET">
<div>
<label for="username">Username</label>
<input id="username" username="username" type="text">
<br>
<br>
<label for="password">Password</label>
<input id="password" password="password" type="text">
</div>
<br>
<button type="submit">Submit</button>
<!-- <input onclick="window.location.href = 'presentation.html';" type="submit" value="LOGIN" /> -->
</form>
<div class="mt-5 p-4 bg-dark text-white text-center">
<p>
This website represents a personal project, it is not to be published
online, only as a private project on git.
</p>
</div>
</body>
</html>