36584-vm/index.php
2025-12-02 14:32:16 +00:00

62 lines
2.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Travel Agent</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<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=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
</head>
<body>
<div class="hero">
<div class="container">
<h1>1111Find Your Next Adventure</h1>
<p class="lead">Let our AI guide you to the wonders of Poland.</p>
</div>
</div>
<div class="container mt-n5">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card p-4">
<div class="card-body">
<form id="suggestion-form">
<div class="mb-3 text-center">
<label for="query" class="form-label fs-5 mb-3">What kind of trip are you dreaming of?</label>
<input type="text" class="form-control form-control-lg" id="query" placeholder="e.g., a relaxing weekend by the sea">
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">Get Suggestion</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div id="loading" class="text-center">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<p>Thinking...</p>
</div>
<div class="card" id="suggestion-card">
<img id="suggestion-image" src="" class="card-img-top" alt="Suggestion Image">
<div class="card-body">
<h5 class="card-title" id="suggestion-title"></h5>
<p class="card-text" id="suggestion-text"></p>
</div>
</div>
</div>
</div>
</div>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>