Dallinger/Dallinger

View on GitHub
demos/dlgr/demos/chatroom/templates/instructions/instruct-ready.html

Summary

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

{% block body %}
    <div class="main_div">
        <h1>Instructions</h1>
        <hr>
        <p>In this experiment, you will be able to broadcast messages to some other players in the game. Some of them will be able to broadcast messages to you.</p>
        <p>The chat session will last until all players leave the chatroom.</p>
        <hr>
        <div>
            <div class="row">
                <div class="col-xs-10"></div>
                <div class="col-xs-2">
                    <button type="button" id="go-to-waiting-room" class="btn btn-success btn-lg">Begin</button>
                </div>
            </div>
        </div>
    </div>
{% endblock %}