Commit 6ce4407a7a524364f82464687765ad6c4b6daa02
1 parent
643f0cbd
Exists in
master
and in
1 other branch
fix others elements style
Showing
3 changed files
with
3 additions
and
17 deletions
Show diff stats
src/web/static/css/survey.css
... | ... | @@ -67,7 +67,7 @@ min-height: 200px; |
67 | 67 | |
68 | 68 | body.survey #wrap { |
69 | 69 | padding-top: 0px; |
70 | -min-height: 450px; | |
70 | +min-height: 200px; | |
71 | 71 | position: relative; |
72 | 72 | } |
73 | 73 | |
... | ... | @@ -190,7 +190,7 @@ z-index: 3; |
190 | 190 | |
191 | 191 | #controls-form { |
192 | 192 | position: absolute; |
193 | -top: 390px; | |
193 | +top: 150px; | |
194 | 194 | width: 600px; |
195 | 195 | margin-right: auto; |
196 | 196 | margin-left: auto; | ... | ... |
src/web/templates/survey.html
... | ... | @@ -28,8 +28,6 @@ $var jsfiles: static/coda-slider-2.0/javascripts/jquery-1.3.2.min.js static/coda |
28 | 28 | <div class="show-end" style="display: none;"> |
29 | 29 | |
30 | 30 | <p> |
31 | -<!--A class <b>show-end</b> ou <b>hide-end</b> mostra um elemento ou esconde um | |
32 | -elemento ao final do último Next.--> | |
33 | 31 | You have completed this round of evaluations. If you have time to do some more, |
34 | 32 | please do so. Otherwise, please conclude your participation clicking in the |
35 | 33 | button below. | ... | ... |
src/web/templates/thanks.html
... | ... | @@ -8,18 +8,6 @@ $var cssfiles: static/css/survey.css |
8 | 8 | #wrap { padding-top: 0px; } |
9 | 9 | </style><!-- hidden top bar upload --> |
10 | 10 | |
11 | -<script> | |
12 | -function validateForm() | |
13 | - { | |
14 | - var n = $$("input[name=name]"); | |
15 | - var e = $$("input[name=email]"); | |
16 | - if ( !n.val() || !e.val() ) { | |
17 | - alert("Write your Name and Email."); | |
18 | - return false; | |
19 | - } | |
20 | -} | |
21 | -</script> | |
22 | - | |
23 | 11 | <div id="maincontent"> |
24 | 12 | <div class="innertube"> |
25 | 13 | |
... | ... | @@ -37,7 +25,7 @@ function validateForm() |
37 | 25 | </p><br /> |
38 | 26 | </center> |
39 | 27 | |
40 | - <form action="/thanks" method="post" enctype="multipart/form-data" name="identification_form" onsubmit="return validateForm()"> | |
28 | + <form action="/thanks" method="post" enctype="multipart/form-data" name="identification_form"> | |
41 | 29 | |
42 | 30 | <label> |
43 | 31 | <input type="hidden" name="user_id" value=$user_id> | ... | ... |