Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
120 changes: 120 additions & 0 deletions Full Stack Projects/Record-Manager/add.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!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>Add Record</title>
</head>
<style>
body {
margin: 0;
padding: 0;
font-family: serif;
background: url(vector.jpg) no-repeat;
background-size: cover;
}

.heading {
color: white;
width: 480px;
position: absolute;
top: 35%;
left: 40%;
transform: translate(-30%, -30%);
}

.heading h1 {
float: left;
font-size: 35px;
border-bottom: 6px solid #4caf4c;
margin-bottom: 50px;
padding: 13px 0;
}

.heading h3 {
float: left;
font-size: 24px;
font-weight: bolder;
color: #ff9156;
width: 100%;
margin-bottom: 40px;
padding: 10px 0;
border-bottom: 4px solid #4caf4c;
}

.textbox {
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 3px solid #4caf4c;
}

.textbox input {
border: none;
outline: none;
background: none;
color: white;
font-size: 18px;
width: 40%;
float: right;
margin: 0 10px;
}

.btn {
width: 100%;
background: none;
border: 2px solid #4caf4c;
color: white;
font-size: 18px;
padding: 5px;
cursor: pointer;
margin: 12px 0;
}
</style>

<body>
<form action="addser" method="get">

<div class="heading">
<h1>Add Records In The Database</h1>

<section>
<h3>** Enter the Fill The Information Correctly **</h3>
</section>

<div class="textbox">
<label>Enter the Roll Number : </label>
<input type="text" name="rno" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Name : </label>
<input type="text" name="name" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 1 : </label>
<input type="text" name="m1" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 2 : </label>
<input type="text" name="m2" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 3 : </label>
<input type="text" name="m3" placeholder="Roll Number">
</div>
<input type="submit" value="Add The Record" class="btn">

</div>

</form>
</body>

</html>
120 changes: 120 additions & 0 deletions Full Stack Projects/Record-Manager/add.html.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!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>Add Record</title>
</head>
<style>
body {
margin: 0;
padding: 0;
font-family: serif;
background: url(vector.jpg) no-repeat;
background-size: cover;
}

.heading {
color: white;
width: 480px;
position: absolute;
top: 35%;
left: 40%;
transform: translate(-30%, -30%);
}

.heading h1 {
float: left;
font-size: 35px;
border-bottom: 6px solid #4caf4c;
margin-bottom: 50px;
padding: 13px 0;
}

.heading h3 {
float: left;
font-size: 24px;
font-weight: bolder;
color: #ff9156;
width: 100%;
margin-bottom: 40px;
padding: 10px 0;
border-bottom: 4px solid #4caf4c;
}

.textbox {
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 3px solid #4caf4c;
}

.textbox input {
border: none;
outline: none;
background: none;
color: white;
font-size: 18px;
width: 40%;
float: right;
margin: 0 10px;
}

.btn {
width: 100%;
background: none;
border: 2px solid #4caf4c;
color: white;
font-size: 18px;
padding: 5px;
cursor: pointer;
margin: 12px 0;
}
</style>

<body>
<form action="addser" method="post">

<div class="heading">
<h1>Add Records In The Database</h1>

<section>
<h3>** Enter the Fill The Information Correctly **</h3>
</section>

<div class="textbox">
<label>Enter the Roll Number : </label>
<input type="text" name="rno" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Name : </label>
<input type="text" name="name" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 1 : </label>
<input type="text" name="m1" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 2 : </label>
<input type="text" name="m2" placeholder="Roll Number">
</div>

<div class="textbox">
<label>Enter the Marks of Subject 3 : </label>
<input type="text" name="m3" placeholder="Roll Number">
</div>
<input type="submit" value="Add The Record" class="btn">

</div>

</form>
</body>

</html>
83 changes: 83 additions & 0 deletions Full Stack Projects/Record-Manager/delete.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!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>Delete Page</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: url(vector4.jpg) no-repeat;
background-size: cover;
color: white;
}

.head_box {
width: 700px;
position: absolute;
top: 20%;
left: 40%;
transform: translate(-30%, -30%);
}

.head_box h1 {
float: left;
font-size: 40px;
border-bottom: 6px solid #4caf4c;
margin-bottom: 150px;
padding: 10px 0;
}

.textbox {
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 10px 0;
margin: 10px 0;
}

.textbox input {
border: 1px dashed white;
outline: none;
background: none;
color: #49FF00;
font-size: 20px;
width: 50%;
float: right;
margin: 0 20px;
}

.btn {
width: 100%;
background: none;
border: 2px double #4caf4c;
color: white;
font-size: 18px;
padding: 5px;
cursor: pointer;
margin: 12px 0;
}
</style>
</head>

<body>
<form action="deleteser" method="get" class="box">
<div class="head_box">
<h1>Delete Record From The Database</h1>

<div class="textbox">
<label>Roll Number You Want To Delete : </label>
<input type="text" name="sno" placeholder="Roll Number">
</div>

<input type="submit" value="Delete Record" class="btn">

</div>
</form>
</body>

</html>
Loading