71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>User Profile</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #f9f9f9; /* Light background */
|
|
}
|
|
.profile-container {
|
|
background-color: #ffffff; /* White background */
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
max-width: 600px;
|
|
margin: 50px auto;
|
|
}
|
|
.btn-reset {
|
|
background-color: #ff8c00; /* Orange Color */
|
|
color: white;
|
|
}
|
|
.btn-reset:hover {
|
|
background-color: #e07b00; /* Darker orange on hover */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container profile-container">
|
|
<h2>User Profile</h2>
|
|
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">Name</label>
|
|
<input type="text" class="form-control" id="name" value="John Doe" readonly>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">Email</label>
|
|
<input type="email" class="form-control" id="email" value="johndoe@example.com" readonly>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="phone" class="form-label">Phone</label>
|
|
<input type="tel" class="form-control" id="phone" value="+1234567890" readonly>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="designation" class="form-label">Designation</label>
|
|
<input type="text" class="form-control" id="designation" value="Software Developer" readonly>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="date-added" class="form-label">Date Added</label>
|
|
<input type="text" class="form-control" id="date-added" value="November 3, 2021" readonly>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-between">
|
|
<button class="btn btn-reset">Reset Password</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap JS and dependencies -->
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.6/umd/popper.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|