Created
February 17, 2021 13:17
-
-
Save lmas3009/55cfadc3b12d401f518c005edce7e731 to your computer and use it in GitHub Desktop.
Flask CRUD Operations
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CRUD-Flask</title> | |
<style> | |
.heading{ | |
text-align: center; | |
} | |
.form{ | |
display: grid; | |
place-items: center; | |
} | |
.form input{ | |
margin-right: 30px; | |
} | |
.form select{ | |
margin-right: 30px; | |
} | |
table { | |
font-family: arial, sans-serif; | |
border-collapse: collapse; | |
width: 100%; | |
} | |
td, th { | |
border: 1px solid #dddddd; | |
text-align: left; | |
padding: 8px; | |
} | |
tr:nth-child(even) { | |
background-color: #dddddd; | |
} | |
.update{ | |
height: 30px; | |
width: 60px; | |
background-color: #4caf50; | |
border: none; | |
border-radius: 5px; | |
color: white; | |
cursor: pointer; | |
} | |
.delete{ | |
height: 30px; | |
width: 60px; | |
background-color: red; | |
border: none; | |
border-radius: 5px; | |
color: white; | |
cursor: pointer; | |
} | |
.table{ | |
overflow: scroll; | |
overflow-x: hidden; | |
max-height: 80vh; | |
} | |
.btn{ | |
display: flex; | |
flex-direction: row; | |
} | |
.btn button{ | |
margin-left: 10px; | |
margin-right: 10px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="heading"> | |
<h2>Welcome to the Tutorial of Flask CRUD Operations</h2> | |
</div> | |
<hr> | |
<div class="form"> | |
<form method="post"> | |
<label>Name</label> | |
<input type="text" name="uname"> | |
<label>Email Id</label> | |
<input type="email" name="email"> | |
<label>Gender</label> | |
<select name="gender"> | |
<option disabled selected value="select">Select</option> | |
<option value="male">Male</option> | |
<option value="male">Female</option> | |
</select> | |
<label>Age</label> | |
<input type="number" name="age"> | |
<label>College Name</label> | |
<input type="text" name="clgname"> | |
<input type="submit" value="Submit"> | |
</form> | |
</div> | |
<hr> | |
<div class="table"> | |
<table> | |
<tr> | |
<th>Name</th> | |
<th>Email Id</th> | |
<th>Gender</th> | |
<th>Age</th> | |
<th>College Name</th> | |
<th>Operations</th> | |
</tr> | |
<tr> | |
<td>No Data</td> | |
<td>No Data</td> | |
<td>No Data</td> | |
<td>No Data</td> | |
<td>No Data</td> | |
<td>No Data</td> | |
</tr> | |
</table> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment