forked from sarveshpathak139/HRMIS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
67 lines (53 loc) · 2.47 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HRMIS Ploybond</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<!-- Link the External Css here And please see name Its a Styles.css -->
<link rel="stylesheet" href="styles.css">
</head>
<style>
</style>
<body>
<center>
<div class="contact" id="contact">
<section style="margin-top: 50px;" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<span class="card-title center" style="font-weight: 500;font-size: 36px;">Signup</span>
<div class="card-body">
<form action="login.php" method="POST">
<div class="input-field col s8 offset-s2 blue-text">
<i class="material-icons prefix">U</i>
<input type="email" name="emailid" Placeholder="Enter Username" required>
</div>
<div class="input-field col s8 offset-s2 blue-text">
<i class="material-icons prefix">account_circle</i>
<input type="email" name="emailid" Placeholder="Enter EmailAddress" required>
</div>
<div class="input-field col s8 offset-s2 blue-text">
<i class="material-icons prefix">lock</i>
<input type="password" name="userpassword" Placeholder="Enter Password" required>
</div>
<div class="input-field col s8 offset-s2 blue-text">
<button type="submit" class="btn btn-primary" name="submit">Signup <i class="material-icons right">send</i></button>
</div>
</form>
<br>
<div class="input-field col s8 offset-s2 blue-text">
<p style="color:black">have an Account? <a href="login.html">Login</a></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>