100-Days-Of-Code/Visual Studio Code Projects/day-61-starting-files-flask-secrets/templates/index.html

18 lines
359 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Secrets</title>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Welcome</h1>
<p>Are you ready to discover my secret?</p>
<a class="btn btn-primary btn-lg" href=" {{ url_for('login') }} "
>Login</a
>
</div>
</div>
</body>
</html>