Update profile.php

This commit is contained in:
jakani24
2024-01-15 16:51:37 +01:00
parent b77774e6ac
commit 2db806c8bc

View File

@@ -23,6 +23,13 @@ $email = $_SESSION["email"];
</head> </head>
<body> <body>
<h4>Your Profile (<?php echo($username); ?>)</h4> <h4>Your Profile (<?php echo($username); ?>)</h4>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h4>Your Profile (<?php echo($username); ?>)</h4>
</div>
<div class="card-body"> <div class="card-body">
<form action="profile.php" method="post"> <form action="profile.php" method="post">
<div class="form-group"> <div class="form-group">
@@ -36,5 +43,7 @@ $email = $_SESSION["email"];
<button type="submit" class="btn btn-primary btn-block">Update</button> <button type="submit" class="btn btn-primary btn-block">Update</button>
</form> </form>
</div> </div>
</div>
</div>
</body> </body>
</html> </html>