-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (23 loc) · 1020 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport"content="width=device-width">
<link rel="stylesheet" href="styles/styles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<title>Taiga Dashboard</title>
</head>
<body class="main-body">
<div class="main_user">
<img class="img-logo" src="img/logoAurora.png" alt="logo taiga">
<h2 class="main-project-description">TAKE A LOOK AT YOUR TAIGA PROJECTS</h2>
<form class="userName show" action="index.html" method="post">
<input id="username_js" type="text" name="username" value="" placeholder="Taiga Username or Taiga email (case sensitive)">
<input id="password_js" type="password" name="password" value="" placeholder="Password (case sensitive)">
<p class="login-error"></p>
<input id="buttonLogin_js" class="login-button" type="button" name="submit" value="LOGIN" >
</form>
</div>
<script src="main.js" charset="utf-8"></script>
</body>
</html>