22 lines
		
	
	
		
			674 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			674 B
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Agent List</title>
 | 
						|
    <script src="https://unpkg.com/htmx.org"></script>
 | 
						|
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div class="container mt-5">
 | 
						|
    <h1>Agent List</h1>
 | 
						|
    <div id="agent-list">
 | 
						|
        <!-- Agents will be dynamically loaded here -->
 | 
						|
        <button class="btn btn-primary mb-3" hx-get="/agents" hx-target="#agent-list" hx-swap="innerHTML">
 | 
						|
            Load Agents
 | 
						|
        </button>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html>
 |