-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.59 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>VodBox</title>
<meta name="description" content="Watch and Share Videos on VodBox" />
<meta property="og:site_name" content="VodBox" />
<meta property="og:title" content="Login Page" />
<meta property="og:description" content="Watch and Share Videos on VodBox" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://vodbox.herokuapp.com/" />
<meta property="og:image" content="https://vodbox.herokuapp.com/poster" />
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="720">
<meta name="twitter:site" content="@VodBox">
<meta name="twitter:card" content="player">
<meta name="twitter:image" content="https://vodbox.herokuapp.com/poster">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='shortcut icon' type='image/x-icon' href='./favicon.ico' />
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="/styles/index.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="main">
<img src="./assets/logo.png" alt="VodBox">
<div id="txt"><h1>VodBox</h1>
<h5>By Yassir Douslimi</h5></div>
<form action="/login" method="POST">
<label for="username">Username</label>
<input type="text" name="username" id="username" required>
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
<!-- <div id="bts"> -->
<button type="submit">
Log in
</button>
<!-- <a href="/"><button id="register" type="button">
Register (in developement)
</button></a> -->
<!-- </div> -->
</form></div>
<script src="/scripts/index.js" async defer></script>
</body>
</html>