second commit

This commit is contained in:
Sharayu.M 2024-01-25 13:08:35 +05:30
parent c232334a67
commit faa3e3bfa2
3 changed files with 8 additions and 5 deletions

BIN
Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@ -81,8 +81,8 @@ if (isset($_POST["submit"])) {
</div>
<div>
<button type="submit" class="btn btn-dark mb-3" style="background-color: green;" name="submit">Save</button>
<a href="index.php" class="btn btn-dark mb-3" style="background-color: red;">Cancel</a>
<button type="submit" class="btn btn-dark mb-3" style="background-color: #33b5fd;" name="submit">Save</button>
<a href="index.php" class="btn btn-dark mb-3" style="background-color: #33b5fd;">Cancel</a>
</div>
</form>
</div>

@ -20,7 +20,10 @@ include "db_conn.php";
</head>
<body>
<nav class="navbar navbar-light justify-content-center fs-3 mb-5" style="background-color: #87CEEB;">
<nav class="navbar navbar-light justify-content-center fs-1 mb-2" style="background-color: #add8e6;">
<img src="Logo.png" alt="Logo" width="300" height="75">
</nav>
<nav class="navbar navbar-light justify-content-center fs-2 mb-4" style="background-color: #87CEEB;">
CRUD Application
</nav>
@ -60,8 +63,8 @@ include "db_conn.php";
<td><?php echo $row["email"] ?></td>
<td><?php echo $row["gender"] ?></td>
<td>
<a href="edit.php?id=<?php echo $row["id"] ?>"><i class="fa-solid fa-pen-to-square fs-5 me-3" ></i></a>
<a href="delete.php?id=<?php echo $row["id"] ?>"><i class="fa-solid fa-trash fs-5"></i></a>
<a href="edit.php?id=<?php echo $row["id"] ?>"><i class="fa-solid fa-pen-to-square fs-5 me-3" style="color:#33b5fd;"></i></a>
<a href="delete.php?id=<?php echo $row["id"] ?>"><i class="fa-solid fa-trash fs-5" style="color:#33b5fd;"></i></a>
</td>
</tr>
<?php