Dallinger/Dallinger

View on GitHub
demos/dlgr/demos/bartlett1932/templates/experiment.html

Summary

Maintainability
Test Coverage
{% extends "layout.html" %}

{% block body %}
    <div class="main_div">
        <div id="stimulus">
            <h1>Read the following text:</h1>
            <div><blockquote id="story"><p>&lt;&lt; loading &gt;&gt;</p></blockquote></div>
            <button id="finish-reading" type="button" class="btn btn-primary">I'm done reading.</button>
        </div>

        <div id="response-form" style="display:none;">
            <h1>Now reproduce the passage, verbatim:</h1>
            <p><b>Note:</b> Your task is to recreate the text, word for word, to the best of your ability.<p>
            <textarea id="reproduction" class="form-control" rows="10"></textarea>
            <p></p>
            <button id="submit-response" type="button" class="btn btn-primary">Submit response.</button>
        </div>
    </div>
{% endblock %}

{% block scripts %}
    <script>
        create_agent();
    </script>
{% endblock %}