1
0
mirror of https://github.com/Adam-Ant/ClockworkAprilFools2017 synced 2024-07-11 07:36:09 +00:00

Add template to buy page

This commit is contained in:
Joe Groocock 2017-03-31 21:50:20 +01:00
parent e41e5c48e8
commit 3336ed047b
Signed by untrusted user: frebib
GPG Key ID: E0B16BEACFBB6A86
3 changed files with 12 additions and 13 deletions

View File

@ -1,8 +1,8 @@
<html>
<body>
<form method="post">
Username: <input type="text" name="username" required>
<button type="submit">Get me that juicy Plus!</button>
</form>
</body>
</html>
{% extends "layout.html" %}
{% block body %}
<form method="post">
Username: <input type="text" name="username" required>
<button type="submit">Get me that juicy Plus!</button>
</form>
{% endblock %}

View File

@ -1,9 +1,4 @@
{% extends "layout.html" %}
{% block head %}
<style type="text/css">
body { background: #fff9f2 !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
</style>
{% endblock %}
{% block body %}
<div class="container">

View File

@ -12,6 +12,10 @@
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style type="text/css">
body { background: #fff9f2 !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
</style>
{% block head %}{% endblock %}
</head>