Orgasnized files

main
Luna 2021-07-26 15:23:13 -07:00
parent c59c46bcd5
commit 231de3a257
16 changed files with 20 additions and 75 deletions

Binary file not shown.

View File

@ -6,7 +6,7 @@ html {
@font-face {
font-family: Linotte;
src: url(LinotteRegular.otf);
src: url(../assets/LinotteRegular.otf);
}
form {

View File

@ -5,7 +5,7 @@ html {
@font-face {
font-family: Linotte;
src: url(LinotteRegular.otf);
src: url(../assets/LinotteRegular.otf);
}
a {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

View File

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="120"
height="120"
viewBox="0 0 31.75 31.75"
version="1.1"
id="svg5"
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
sodipodi:docname="favicon.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="3.4731066"
inkscape:cx="53.698323"
inkscape:cy="76.732456"
inkscape:window-width="1900"
inkscape:window-height="986"
inkscape:window-x="10"
inkscape:window-y="10"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<circle
style="fill:none;fill-opacity:1;stroke:#f7a8b8;stroke-width:3.71222;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path846"
cx="15.874998"
cy="15.874998"
r="14.018888" />
<ellipse
style="fill:#f7a8b8;fill-opacity:1;stroke:none;stroke-width:1.85611;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle1164"
cx="15.875"
cy="15.875"
rx="7.0094452"
ry="7.0094447" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -7,7 +7,7 @@
<meta name="description" content="Maya's Stream Chat">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<link rel="stylesheet" href="chat.css">
<link rel="stylesheet" href="../html/chat.css">
<link rel="icon" href="">
</head>
@ -34,8 +34,8 @@
<div id="errormessage"></div>
<script src="chat.js"></script>
<script src="logout.js"></script>
<script src="../js/chat.js"></script>
<script src="../js/logout.js"></script>
</body>

View File

@ -7,8 +7,8 @@
<meta name="description" content="Chat Login">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="../css/style.css">
<link rel="icon" href="../assets/favicon.svg">
</head>
<body>
@ -27,7 +27,7 @@
</form>
</div>
<script src="login.js"></script>
<script src="../js/login.js"></script>
<div id="errormessage"></div>

View File

@ -7,8 +7,8 @@
<meta name="description" content="Chat Register">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="../css/style.css">
<link rel="icon" href="../assets/favicon.svg">
</head>
<h1>Register:</h1>
@ -45,7 +45,7 @@
<div id="errormessage"></div>
<script src="register.js"></script>
<script src="../js/register.js"></script>
</body>
</html>

View File

@ -7,8 +7,8 @@
<meta name="description" content="Chat Login Change">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="../css/style.css">
<link rel="icon" href="../assets/favicon.svg">
</head>
<body>
@ -53,7 +53,7 @@
</form>
</div>
<script src="updateinfo.js"></script>
<script src="../js/updateinfo.js"></script>
<div id="errormessage"></div>
</body>

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<link rel="stylesheet" href="index.css">
<link rel="icon" href="/favicon.svg">
<link rel="icon" href="asssets/favicon.svg">
</head>
<body>
@ -18,16 +18,16 @@
<li><a href="index.html">
<div class="buttons">Stream</div>
</a></li>
<li><a href="chat.html">
<li><a href="/html/chat.html">
<div class="buttons">Just Chat</div>
</a></li>
<li><a href="register.html">
<li><a href="/html/register.html">
<div class="buttons">Register</div>
</a></li>
<li><a href="login.html">
<li><a href="/html/login.html">
<div class="buttons">Login</div>
</a></li>
<li><a href="updateinfo.html">
<li><a href="/html/updateinfo.html">
<div class="buttons">Update Info</div>
</a></li>
</ul>
@ -61,7 +61,7 @@
scrolling="no"></iframe>
</div>
<iframe id="chatbox" src="chat.html" title="chat box" scrolling="no"></iframe>
<iframe id="chatbox" src="/html/chat.html" title="chat box" scrolling="no"></iframe>
</div>

View File