File size: 3,296 Bytes
af75dfd
 
 
 
 
b36806d
af75dfd
b36806d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af75dfd
 
 
b36806d
af75dfd
 
 
b36806d
 
 
af75dfd
 
 
b36806d
 
 
af75dfd
 
 
b36806d
 
 
af75dfd
 
 
b36806d
 
 
 
 
 
 
 
 
af75dfd
 
 
 
 
b36806d
 
af75dfd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Update Profile</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        .back-to-menu {
            display: block;
            margin: 30px auto 10px auto;
            padding: 10px 20px;
            background-color: #ff5722;
            color: #ffffff;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }
        .back-to-menu:hover {
            background-color: #e64a19;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="container mt-4">
        <h1>Update Profile</h1>

        <form method="POST">
            <div class="mb-3">
                <label for="customerName" class="form-label"><strong>Name:</strong></label>
                <input type="text" class="form-control" id="customerName" name="customerName" value="{{ customer['name'] }}" readonly>
                <button type="button" class="btn btn-outline-secondary mt-2" onclick="enableEditField('customerName')">Change</button>
            </div>

            <div class="mb-3">
                <label for="email" class="form-label"><strong>Email:</strong></label>
                <input type="email" class="form-control" id="email" name="email" value="{{ customer['email'] }}" readonly>
                <button type="button" class="btn btn-outline-secondary mt-2" onclick="enableEditField('email')">Change</button>
            </div>

            <div class="mb-3">
                <label for="phone" class="form-label"><strong>Phone:</strong></label>
                <input type="text" class="form-control" id="phone" name="phone" value="{{ customer['phone'] }}" readonly>
                <button type="button" class="btn btn-outline-secondary mt-2" onclick="enableEditField('phone')">Change</button>
            </div>

            <div class="mb-3">
                <label for="referralCode" class="form-label"><strong>Referral Code:</strong></label>
                <input type="text" class="form-control" id="referralCode" name="referralCode" value="{{ customer['referral_code'] }}" readonly>
                <button type="button" class="btn btn-outline-secondary mt-2" onclick="enableEditField('referralCode')">Change</button>
            </div>

            <div class="mb-3">
                <label for="rewardPoints" class="form-label"><strong>Reward Points:</strong></label>
                <input type="text" class="form-control" id="rewardPoints" name="rewardPoints" value="{{ customer['reward_points'] }}" readonly>
                <button type="button" class="btn btn-outline-secondary mt-2" onclick="enableEditField('rewardPoints')">Change</button>
            </div>

            <button type="submit" class="btn btn-primary">Update Profile</button>
        </form>

        <a href="/menu" class="back-to-menu">Back to Menu</a>
    </div>
</body>
</html>