Commit a74a64bf authored by Franco Velasco's avatar Franco Velasco

Added back button to add user page

parent 764c42f7
...@@ -159,6 +159,22 @@ input, select { ...@@ -159,6 +159,22 @@ input, select {
padding: 0; padding: 0;
border: 0px; border: 0px;
} }
.action-buttons {
display: block;
flex-flow: row wrap;
gap: 2em;
align-items: center;
}
.action-buttons > a {
text-decoration: none;
margin-left: 2em;
}
.action-buttons > a:hover {
text-decoration: underline;
}
</style> </style>
{% endblock %} {% endblock %}
...@@ -189,7 +205,10 @@ input, select { ...@@ -189,7 +205,10 @@ input, select {
</div> </div>
</div> </div>
<input class="submit-button" type="submit" value="Create User"> <div class="action-buttons">
<input class="submit-button" type="submit" value="Create User">
<a href="/homepage"> Go Back </a>
</div>
</form> </form>
</div> </div>
<script> <script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment