Skip to content
Permalink
3339c012d1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
43 lines (32 sloc) 877 Bytes
{% extends "base.html" %}
{% block navTabs %}
{% include "helpers/requestNav.html" %}
{% endblock navTabs %}
{% block content %}
<h1>Automation Challenge</h1>
{% markdown %}
For this challenge you need to calcuate the MD5 sum for the magic word you have been given.
{% endmarkdown %}
<div class="section">
<p>
What is the MD5 Sum for the following:
<p>
<span id="magicword">{{ magicword }}</span>
</p>
{% if feedback %}
<p><strong>{{ feedback }}</strong></p>
{% endif %}
{% if theFlag %}
<h3>{{ theFlag }}</h3>
{% endif %}
<form method="POST">
<div class="row">
<div class="input-field col s12">
<input id="answer" name="answer" type="text">
<label for="answer">Answer</label>
</div>
</div>
<button class="btn waves-effect waves-light" type="submit">Submit</button>
</form>
</section>
{% endblock content %}