<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>User_transection</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
    <link rel="stylesheet" href="css\user_transection_history.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
</head>

<body>
    <div class="container">
    <h1>รายการบัญชี</h1>
    <h5>ดูรายการบัญชีย้อนหลัง และตรวจสอบรายละเอียดของบัญชี</h5>
        <div class="card">
            <h5 class="card-header">ข้อมูลบัญชี</h5>
            <div class="table-responsive text-nowrap">
                <table class="table">
                    <thead>
                        <tr class="text-nowrap">
                            <th>วันที่ทำรายการ</th>
                            <th>ประเภทรายการ</th>
                            <th>ยอดเงิน (บาท)</th>
                            <th>สถานะ</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>    		
                            <td>12/1/2000</td>
                            <td>การเติมเงิน</td>                        
                            <td>500</td>
                            <td>สำเร็จ</td>                  
                        </tr>
                        <tr>
                            <td>11/1/2000</td>
                            <td>การเติมเงิน</td>
                            <td>1000</td>
                            <td>ล้มเหลว</td>
                        </tr>
                    </tbody>                   
                </table>
                <a class="btn btn-primary col-12" href="#" role="button">ดูข้อมูลเพิ่มเติม</a>
            </div>
        
        </div>
    </div>
</body>

</html>