forked from hngi/Team_Asclepius_Chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (86 loc) · 3.98 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Dosis&display=swap" rel="stylesheet">
<link rel="stylesheet" href="resources/css/signup.css">
<title>Sign Up</title>
</head>
<header>
<nav class="navbar bg-dark">
<h1 hide>
<a href="signup.html">
<h1 id="blue">Asclepius Bot</h1>
</a>
</h1>
<ul class="menu-nav">
<li id="nav-item current">
<a href="signup.html" class="nav-link">
Welcome
</a>
</li>
</ul>
</nav>
</header>
<body>
<div class="container" id="container">
<div class="inner-container grid">
<div class="form-img-wrapper" id="image-wrapper">
<img src=" https://res.cloudinary.com/hng-pre-internship/image/upload/v1569329467/chatbot/opinionbg_ylkxa8.png
" alt="">
</div>
<div class="form-wrapper">
<h1 class="lead">Create Account</h1>
<form method="post" action="registration.php">
<div class="form-grid">
<div class="form-grid1">
<label for="name">
<input type="text" name="fullname" id="name input" placeholder="Full Name">
<i class="far fa-user"></i>
</label>
<label for="username">
<input type="text" name="username" id="username input" placeholder="Username">
<i class="far fa-user"></i>
</label>
<label for="email">
<input type="email" name="email" id="email input" placeholder="Email">
<i class="far fa-envelope"></i>
</label>
</div>
<div class="form-grid2">
<label for="tel">
<input type="tel" name="mobileno" id="tel input" placeholder="Mobile Number">
<i class="fas fa-phone-square"></i>
</label>
<label for="password">
<input type="password" name="apassword" id="password input" placeholder="Password">
<i class="fas fa-lock"></i>
</label>
<label for="con-password">
<input type="password" name="cpassword" id="con-password" input"
placeholder="Confirm Password">
<i class="fas fa-lock"></i>
</label>
</div>
</div>
<div class="flex-btn">
<div class="signup">
<label for="signup">
<button type="submit" name="signup" id="signup">Sign Up</button>
<i class="fas fa-sign-in-alt"></i>
</label>
</div>
</div>
</form>
<div id="prompt">
<p>Have an account?<a class="forgot" href="login.html">Login</a></p>
</div>
</div>
</div>
<footer>©2019 <span class="blue">Team Asclepius.</span> All Rights Reserved.</footer>
</div>
<script src=/main.js"> </script> </body> </html>