-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
99 lines (71 loc) · 2.72 KB
/
signup.html
File metadata and controls
99 lines (71 loc) · 2.72 KB
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
<!DOCTYPE html>
<html lang="en">
</html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Page</title>
<script src="{{ url_for('static', filename='signup.js')}}"></script>
<script src="https://kit.fontawesome.com/4363fa851e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='style1.css')}}">
<style>
</style>
</head>
<style>
body {
width: 100%;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
color: midnightblue;
background: mintcream;
background-image: url_for('static', filename='log2.jpg');
}
</style>
</head>
<body>
<header>
<h1>DoctorDash</h1>
</header>
<nav>
<ul>
<form>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('services') }}">Services</a></li>
<li><a href="{{ url_for('aboutus') }}">About Us</a></li>
<li><a href="{{ url_for('login') }}">Login</a></li>
<li><a href="{{ url_for('signup') }}">Signup</a></li>
</form>
</ul>
</nav>
<div id="lo" class="container">
<form action="{{ url_for('addsi') }}" method="POST" onsubmit="return validateForm()">
<label for="email">Email:</label>
<input type="text" id="email" name="email">
<label for="username">Username:</label>
<input type="text" id="username" name="user">
<label for="password">password:</label>
<input type="password" id="pswd" name="pwd" value="">
<span id="message" style="color:red"> </span>
<br>
<br>
<button type="submit" class="btn btn-primary" >Submit</button>
</form>
</div>
<footer style="margin-top: 380px;">
<section class="contact-us">
<h2>Contact Us</h2>
<ul>
<li>Email: <a href="mailto:doctordash@usf.edu">doctordash@usf.edu</a></li>
<li>Phone: <a href="ph no.:+18135931789">+1 (813) 593-1789</a></li>
</ul>
</section>
<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>
<p class="w3-medium">Copyright © 2023,DoctorDash</a></p>
</footer>
</body>
</html>