-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.09 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
<!--
Link to server Repl:
https://replit.com/join/wvvmtrltta-lioliver
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mail Client</title>
<link href="index.css" rel="stylesheet" />
<link href="/mail-page/mail.css" rel="stylesheet" />
</head>
<body>
<header class="default-header">
<div class="logo-container">
<img class="logo-image img" src="/icons/barb.png">
</div>
</header>
<main>
<div class="options">
<h1>Barb Mail</h1>
<h3>Not affliated with SuperCell</h3>
<div>
<a href="/login-page/login.html">
<button class="btn">Login</button>
</a>
<template>
<a href="/register-page/register.html">
<button class="btn">Register</button>
</a>
<a href="/mail-page/mail.html">
<button class="btn">Test mail page</button>
</a>
</template>
</div>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hellojs/1.19.5/hello.js"></script>
<!--<script type="module" src="script.js"></script>-->
</body>
</html>