2020-02-14 15:19:30 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2020-02-17 13:25:14 -05:00
|
|
|
<title>Protocol Builder Mock Configuration</title>
|
2020-05-24 23:05:57 -04:00
|
|
|
<base href="/">
|
2020-02-26 12:17:37 -05:00
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://use.typekit.net/kwp6dli.css">
|
|
|
|
{% assets 'app_scss' %}
|
2020-05-24 23:05:57 -04:00
|
|
|
<link href="{{ base_href + ASSET_URL }}" rel="stylesheet" type="text/css">
|
2020-02-26 12:17:37 -05:00
|
|
|
{% endassets %}
|
2020-05-24 23:05:57 -04:00
|
|
|
<link rel="shortcut icon" href="{{ base_href + url_for('static', filename='favicon.ico') }}">
|
2020-02-14 15:19:30 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-02-26 12:17:37 -05:00
|
|
|
<h2>{{ title }}</h2>
|
|
|
|
<p>{{ details }}</p>
|
|
|
|
<form action="{{ action }}" method="post">
|
2020-02-14 15:19:30 -05:00
|
|
|
|
|
|
|
{{ form.csrf_token() }}
|
|
|
|
|
|
|
|
{% for field in form if field.name != "csrf_token" %}
|
2020-02-26 12:17:37 -05:00
|
|
|
<div class="form-field">
|
|
|
|
<div class="form-field-label">{{ field.label() }}:</div>
|
|
|
|
<div class="form-field-input">{{ field }}</div>
|
|
|
|
<div class="form-field-help">{{ description_map[field.name] }}</div>
|
2020-02-14 15:19:30 -05:00
|
|
|
{% for error in field.errors %}
|
2020-02-26 12:17:37 -05:00
|
|
|
<div class="form-field-error">{{ error }}</div>
|
2020-02-14 15:19:30 -05:00
|
|
|
{% endfor %}
|
2020-02-26 12:17:37 -05:00
|
|
|
</div>
|
2020-02-14 15:19:30 -05:00
|
|
|
{% endfor %}
|
2020-02-26 12:17:37 -05:00
|
|
|
<button class="btn btn-primary" type="submit">Submit</button>
|
2020-05-24 23:05:57 -04:00
|
|
|
<a href="{{ base_href + "/" }}" class="btn btn-default">Cancel</a>
|
2020-02-14 15:19:30 -05:00
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|