<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width, initial-scale=1,user-scalable=no">
<title>{% block title %}Welcome!{% endblock %}</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
{% block stylesheets %}{% endblock %}
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/style.css">
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}
<script>
$('input').each(function() {
$(this).attr("autocomplete", "off");
})
</script>
{% endblock %}
</body>
</html>