This repository was archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlog.html
61 lines (51 loc) · 2.13 KB
/
log.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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="container" >
<form action="login.php" method="POST">
<div class="row" style="padding-top:10%;padding-left:10%;">
<div class="col s12 m12">
<div class="card col m6 s12 offset-m2 hoverable" ><br>
<center><div class="card orange accent-4"><span class="card-title white"><div style="font-size:larger;color:white;">E-LEARN</div><div style="font-size:large;color:white">SRM UNIVERSITY</div></span></div></center>
<div class="card-content">
<div class="row">
<div class="input-field col s12">
<input id="user" name="user" type="text" class="validate">
<label for="uname">Username</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="pass" name="pass" type="password" class="validate">
<label for="pass">Password</label>
</div>
</div>
<center>
<button type="submit" name="submit" class="waves-effect waves-light btn orange darken-1" >Submit</button>
</center>
</div>
<center >
<div class="card orange accent-4" style="color:white;font-size:medium;">
<span style=" position: relative;
display:inline-block;
transform: rotate(180deg);"> ©</span>Copyleft, SRM UNIVERSITY</div> </center>
<br>
</div>
</div>
</div>
</form>
</div>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script>
</body>
</html>