-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.php
40 lines (40 loc) · 1.51 KB
/
signin.php
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
<!DOCTYPE html>
<html>
<head>
<title>MoboSkins</title>
<script language="JavaScript" type="text/javascript" src="js/checkform.js"></script>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/custom.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<?php
include('topmenu.php');
?>
<body>
<form action="validateuser.php" method="post" class="sign-in-form">
<table border="0" cellspacing="1" cellpadding="3">
<tr>
<td>Email address:</td>
<td><input type="text" name="emailaddress"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<!-- <button class="waves-effect waves-light btn" type="submit">Login</button>-->
<!-- <td colspan="2" align="center"><input type="submit" name="submit" value="Login"></td>-->
<td>
<button class="waves-effect waves-light btn" type="submit" name="action"
style="background-color: #ee6e73">Login
</button>
</td>
</tr>
</table>
</form>
</body>
</html>