-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from BhuvanSA/main
Remove unnecessary dependencies
- Loading branch information
Showing
6 changed files
with
86 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Login</title> | ||
<!-- <link rel="stylesheet" href="static/login-style.css"> --> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='css/login-style.css') }}"> | ||
<link rel="icon" type="image/png" sizes="30x30" href="static/star.png"> | ||
</head> | ||
<head> | ||
<title>Login</title> | ||
<link rel="stylesheet" | ||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> | ||
<link rel="icon" type="image/png" sizes="30x30" href="static/star.png"> | ||
<link rel="stylesheet" | ||
href="{{ url_for('static', filename='css/styles.css') }}"> | ||
</head> | ||
|
||
<body> | ||
{% if error %} | ||
<p><strong>{{ error }}</strong></p> | ||
{% endif %} | ||
<form class="form" method="post"> | ||
<label for="username">Username:</label> | ||
<input type="text" id="username" name="username" required> | ||
<br> | ||
<label for="password">Password:</label> | ||
<input type="password" id="password" name="password" required> | ||
<br> | ||
<input class="loginbtn" type="submit" value="Login"> | ||
</form> | ||
</body> | ||
<body> | ||
{% if error %} | ||
<p><strong>{{ error }}</strong></p> | ||
{% endif %} | ||
<div class="form user_page"> | ||
<h1> Login </h1> | ||
</div> | ||
<br /> | ||
<form class="form user_page" method="post"> | ||
<label for="username">Username:</label> | ||
<div | ||
style="border-radius: 20px; border: 2px solid; border-color:aquamarine; margin-left: 80px; margin-right: 80px "> | ||
<input type="text" id="username" name="username" | ||
required> | ||
</div> | ||
<br> | ||
<label for="password">Password:</label> | ||
<div | ||
style="border-radius: 20px; border: 2px solid; border-color:aquamarine; margin-left: 80px; margin-right: 80px"> | ||
<input type="password" id="password" name="password" required> | ||
</div> | ||
<br> | ||
<button type="submit" class="btn btn-primary">Login</button> | ||
</form> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Feedback Submitted</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}"> | ||
<link rel="icon" type="image/png" sizes="30x30" href="static/star.png"> | ||
</head> | ||
<head> | ||
<title>Feedback Submitted</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" | ||
href="{{ url_for('static', filename='css/styles.css') }}"> | ||
<link rel="icon" type="image/png" sizes="30x30" href="static/star.png"> | ||
</head> | ||
|
||
<body> | ||
<a href="/dashboard" class="dashboard-button">Dashboard</a> | ||
<a href="https://github.com/bhuvansa/flask-feedback-form" class="github-link"> </a> | ||
<div class="form"> | ||
<h1> Thankyou for your feedback! {{ name }} </h1> | ||
</div> | ||
</body> | ||
<body> | ||
<a href="/dashboard" class="dashboard-button">Dashboard</a> | ||
<a href="https://github.com/bhuvansa/flask-feedback-form" | ||
class="github-link"> </a> | ||
<div class="form user_page"> | ||
<h1> Thankyou for your feedback! {{ name }} </h1> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,4 @@ MarkupSafe==2.1.2 | |
psycopg2-binary==2.9.9 | ||
python-dotenv==1.0.1 | ||
six==1.16.0 | ||
waitress==2.1.2 | ||
Werkzeug==2.2.3 |