Spaces:
Build error
Build error
File size: 498 Bytes
3005655 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Success</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="container">
<h1>Success</h1>
<p>Your cover letter has been generated successfully.</p>
<a href="{{ url_for('download', filename=temp_file_path) }}">Download Cover Letter</a>
<a href="{{ url_for('index') }}">Back</a>
</div>
</body>
</html>
|