]> git.datanom.net - pwp.git/blame - app/templates/portfolio.html
initial commit
[pwp.git] / app / templates / portfolio.html
CommitLineData
e5424f29
MR
1{% extends "base.html" %}
2
3{% block title %}
4{{ title }}
5{% endblock %}
6
7{% block content %}
8 {% include 'menu.html' %}
9 {% include 'flash.html' %}
10 <div class="container">
11 <div class="login-register-page">
12 <div class="well">
13 <form class="form-signin" method="POST" action="#">
14 <h3 class="form-signin-heading center">{{ title }}</h3>
15 {{ form.hidden_tag() }}
16 {{ wtf.form_field(form.name, placeholder="Portfolio name", autofocus="autofocus") }}
17 {{ wtf.form_field(form.visible) }}
18 {{ wtf.form_field(form.public) }}
19 {{ wtf.form_field(form.portfolio, class="btn btn-lg btn-primary btn-block") }}
20 </form>
21 </div>
22 </div>
23 </div> <!-- /container -->
24{% endblock %}
This page took 0.029291 seconds and 5 git commands to generate.