This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (53 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>City Library</title>
<link rel="icon" type="image/x-icon" href="logo.ico">
</head>
<body>
<div class="intro">
<h1 class="logo-header">
<span class="logo">city</span><span class="logo">library</span>
</h1>
</div>
<header>
<img src="logo.png" alt="logo" width="177" height="80" class="center">
</header>
<p class="border"></p>
<div class="content">
<div class="buttons">
<button class="btn" onclick="location.href='https://matijakljajic.github.io'">Main</button>
<button class="btn" onclick="location.href='https://github.com/matijakljajic/skolskabiblioteka'">View on Github</button>
<button class="btn" onclick="location.href='https://github.com/matijakljajic/skolskabiblioteka/releases/download/12.9.2022/CityLibrary1292022.exe'">Download</button>
</div>
<h2>School/city library database program</h2>
<p>
This is my secondary school graduation project involving the school library and the city library.<br>
The interface managed by the end user is powered by Microsoft Access while the database itself could be migrated to a server solution if needed. The project is thus scalable and could be reused at a later date. Doing it this way was adequate at the time, but of course, there are better solutions. <br>
(A C# solution maybe?)
</p>
<p><i>This is a rework of the original project so that I could learn Git in-depth. It is quite simplified from the original, but it may be updated accordingly.</i></p>
<h2>Features</h2>
<ul>
<li>✅ basic UI that's at least a bit pleasant to look at</li>
<li>✅ some kind of security</li>
<li>✅ more efficient way to check up on members and available books</li>
<li>✅ all-around easier process when it comes to lending books</li>
<li>❎ ability to extract/print certain needed info</li>
<li>❎ ability to use the program on multiple computers at once</li>
</ul>
<h2>Screenshots</h2>
<div class="centerimg">
<img src="https://raw.githubusercontent.com/matijakljajic/skolskabiblioteka/main/Screenshots/new/main.jpg" alt="Main Menu" width="48%" height="48%">
<img src="https://raw.githubusercontent.com/matijakljajic/skolskabiblioteka/main/Screenshots/new/members.jpg" alt="More INFO" width="48%" height="48%">
</div>
</div>
<div class="endinfo">
<p>Status message: <i>Why are you here though?</i></p>
</div>
<script src="app.js"></script>
</body>
</html>