popup forms css

This commit is contained in:
Sanj 2012-08-01 16:37:25 +05:30
parent 547080485c
commit 8ee6896216
2 changed files with 10 additions and 7 deletions

View File

View File

@ -5,6 +5,7 @@
<script type="text/javascript" src="/static/js/jquery-1.7.1.min.js"></script>
<link rel="stylesheet" href="/static/css/reset.css" />
<link rel="stylesheet" href="/static/css/noel/main.css" />
<link rel="stylesheet" href="/static/css/popup_forms.css" />
<link rel="stylesheet" href="/static/uni_form/uni-form.css" type="text/css" />
<link rel="stylesheet" href="/static/uni_form/default.uni-form.css" type="text/css" />
<link rel="stylesheet" href="/static/css/register.css" />
@ -18,13 +19,15 @@
</script>
</head>
<body>
<form action="" method="POST" id="formItf">
{% csrf_token %}
{% crispy form form.helper %}
<br />
<input type="submit" value="Submit" />
</form>
<div id="popupFormContainer">
<form action="" method="POST" id="formItf">
{% csrf_token %}
{% crispy form form.helper %}
<br />
<input type="submit" value="Submit" />
</form>
</div>
</body>
</html>