-
Notifications
You must be signed in to change notification settings - Fork 0
/
folder.html
79 lines (68 loc) · 2.75 KB
/
folder.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css.css">
<title>FOLDER</title>
</head>
<body style="background-color: #ccc;" >
<div class="container">
<nav style="margin-bottom: 30px;">
<div class="nav-wrapper black center" >
<a href="#" class="brand-logo">Logo</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="sass.html">Sass</a></li>
<li><a href="badges.html">Components</a></li>
<li><a href="collapsible.html">JavaScript</a></li>
</ul>
</div>
</nav>
<div class="row container" >
<div class="card darken-4 col offset-s2 s8 login" style="padding: 10px;">
<div class="card-content vertical black">
<span class="card-title white-text">HAVE YOU LOGGED IN?</span>
<form autocomplete="off" method="post" action="">
<input autocomplete="false" name="hidden" type="text" style="display:none;">
<div class="input-field">
<input id="username" type="text" name="username" class=" white-text">
<label class="white-text" for="username">Username</label>
</div>
<div class="input-field">
<input id="password" type="password" name="password" class=" white-text">
<label class="white-text"for="password">Password</label>
</div>
<button class="btn waves-effect waves-light centre" >Log In
<i class="material-icons right">send</i>
</button>
<h6 class="white-text">Not an existing user?</h6>
<a class="btn waves-effect waves-light col s6" href='signup.html'>Sign Up</a>
<i class="material-icons right">how_to_reg</i>
</form>
</div>
</div></div>
<footer class="page-footer">
<div class="container">
<div >
<h5 class="white-text">Links</h5>
<div class="row ">
<a href="#" class="col s3 offset-s3 white-text"> Admin Login</a>
<a href="#" class="col s3 white-text"> Developers</a>
<a href="#" class="col s3 white-text"> Contact</a>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2014 Copyright Text
<a class="grey-text text-lighten-4 right" href="#!">More Links</a>
</div>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>