Skip to content
Permalink
799b7bd39f
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
32 lines (21 sloc) 796 Bytes
{% extends "base.html" %}
{% block content %}
<h1>Payment</h1>
<p>User: {{user.name}} will buy items</p>
<p>Total payment of <strong>£{{ cost }}</strong></p>
<!-- This does nothing -->
<form method="POST" action="/basket/payment/process" >
<div class="row">
<div class="input-field col s12">
<input placeholder="Placeholder" id="first_name" type="text" class="validate">
<label for="first_name">Name</label>
</div>
<div class="input-field col s12">
<input placeholder="Placeholder" id="first_name" type="text" class="validate">
<label for="first_name">Card Number</label>
</div>
<input type="hidden" value="{{ cost }}" name="total" >
<button class="waves-effect waves-light btn">Pay</button>
</div>
</form>
{% endblock %}