-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_account.html
More file actions
21 lines (21 loc) · 822 Bytes
/
create_account.html
File metadata and controls
21 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title> Login Form in HTML5 and CSS3</title>
<link rel="stylesheet" a href="{{ url_for('static', filename='create_account.css')}}">
<link rel="stylesheet" a href="css\font-awesome.min.css">
</head>
<body>
<div class="container">
<img src="https://media.glassdoor.com/sqll/573786/tvs-credit-services-squarelogo-1590679408071.png"/>
<form method='POST' action='#'>
<input type="text" name="text" placeholder="Enter the Name"/>
<input type="text" name="text" placeholder="Enter the Gmail"/>
<input type="password" name="password" placeholder="Create password"/>
<input type="password" name="password" placeholder="Confirm password"/>
<br>
<input type="submit" type="submit" value="Register" class="btn-login"/>
</form>
</div>
</body>
</html>