-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_portal.html
29 lines (20 loc) · 972 Bytes
/
user_portal.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='for_user_styles.css')}}">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<title>Chatbot Helix</title>
</head>
<body>
<div class="main">
<p class="sign" align="center">Chatbot User Login Page</p>
<form class="form1" action="/user_login">
<input class="un " type="text" align="center" placeholder="Username" for="uname" name="uname" value="">
<input class="pass" type="password" align="center" placeholder="Password" for="passwd">
<input class="submit" align="center" type="submit" value="Login">
<p class="forgot" align="center">Complete credentials and click the 'Login button'</p>
</form>
</div>
</body>
</html>