File size: 2,481 Bytes
fa53be0 9d43e30 fa53be0 9d43e30 fa53be0 9d43e30 fa53be0 9d43e30 fa53be0 86a95d5 fa53be0 9d43e30 fa53be0 86a95d5 fa53be0 e75202e fa53be0 69d37ef fa53be0 465850b e75202e fa53be0 465850b fa53be0 9d43e30 |
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 74 75 76 77 78 79 80 |
<!DOCTYPE html>
<html>
<head>
<title>Trustworthy LLMs for Table QA</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background: url('/static/images/background.jpg') no-repeat center center fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: #ffffff;
padding: 60px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 60%;
}
h1 {
color: #000000;
font-size: 48px;
margin-bottom: 30px;
}
label {
display: block;
margin: 20px 0 10px;
color: #000000;
font-size: 24px;
}
input[type="text"], input[type="number"] {
width: 80%;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 18px;
}
button {
background-color: #4CAF50;
color: white;
padding: 15px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 24px;
transition: background-color 0.3s ease;
margin-top: 20px;
}
button:hover {
background-color: #45a049;
}
.error-message {
color: #ff0000;
margin-top: 10px;
font-size: 16px;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Trustworthy LLMs for Table QA</h1>
{% if error %}
<div class="error-message">{{ error }}</div>
{% endif %}
<form id="method-form" action="{{ url_for('index') }}" method="post">
<label for="username">Hi there πππ ! What is your name?</label>
<input type="text" id="username" name="username" required>
<label for="seed">What is your lucky number? πππ </label>
<input type="number" id="seed" name="seed" required>
<button type="submit">Start Experiment</button>
</form>
</div>
</body>
</html> |