22 lines
312 B
HTML
22 lines
312 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<main class="usa-section usa-content">
|
|
|
|
<h1>Home</h1>
|
|
|
|
<TextInput inline-template>
|
|
<div class='usa-input'>
|
|
<label for='some-input'></label>
|
|
<input type='text' id='some-input' v-on:change='handleChange'/>
|
|
</div>
|
|
</TextInput>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|