Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Customer Details</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container mt-4"> | |
<h1>Customer Details</h1> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">Customer Name: {{ customer.name }}</h5> | |
<p class="card-text"><strong>Email:</strong> {{ customer.email }}</p> | |
<p class="card-text"><strong>Phone:</strong> {{ customer.phone }}</p> | |
<p class="card-text"><strong>Referral Code:</strong> {{ customer.referral_code }}</p> | |
<p class="card-text"><strong>Reward Points:</strong> {{ customer.reward_points }}</p> | |
<!-- Edit Profile Button --> | |
<a href="/edit_customer" class="btn btn-primary">Edit Profile</a> | |
</div> | |
</div> | |
</div> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | |
</body> | |
</html> | |