Compare commits

...

1 Commits

Author SHA1 Message Date
Daniel Miksi
50a5fd7aa7 CSS files added, login page basic frontend created 2024-10-11 22:26:41 +02:00
3 changed files with 71 additions and 0 deletions

48
static/assets/reset.css Normal file
View File

@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

15
static/assets/screen.css Normal file
View File

@ -0,0 +1,15 @@
body{
background-color: aliceblue;
font-family: "Comic Sans MS", Arial, sans-serif;
font-size: 2rem;
text-align: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}

View File

@ -8,9 +8,15 @@
<script src="/js/config.js"></script>
<script src="/js/utils.js"></script>
<script defer src="/js/auth.js"></script>
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/screen.css">
</head>
<body>
<div class="container">
<h1>SZOE Pontok</h1>
<form id="auth_form">
<label for="neptun">Neptun</label>
<input type="text" id="neptun" name="neptun">
@ -24,6 +30,8 @@
<input type="button" value="Login" onclick="login()">
<input type="button" value="Register" onclick="register()">
</form>
</div>
</body>
</html>