Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
panikdb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
radiopanik
panikdb
Commits
185ca3d0
Commit
185ca3d0
authored
Jan 27, 2019
by
fred
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use <button> instead of input type=submit
parent
eb1f5af3
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
7 deletions
+8
-7
panikdb/templates/emissions/episode_detail.html
panikdb/templates/emissions/episode_detail.html
+2
-2
panikdb/templates/registration/login.html
panikdb/templates/registration/login.html
+1
-1
panikdb/templates/registration/password_change_form.html
panikdb/templates/registration/password_change_form.html
+1
-1
panikdb/templates/registration/password_reset_confirm.html
panikdb/templates/registration/password_reset_confirm.html
+1
-1
panikdb/templates/registration/password_reset_form.html
panikdb/templates/registration/password_reset_form.html
+2
-1
panikdb/templates/search/search.html
panikdb/templates/search/search.html
+1
-1
No files found.
panikdb/templates/emissions/episode_detail.html
View file @
185ca3d0
...
...
@@ -77,7 +77,7 @@ Tags :
<form
id=
"add-diffusion-form"
action=
"add-diffusion"
method=
"POST"
style=
"display: none;"
>
{% csrf_token %}
{{ add_diffusion_form.as_p }}
<
input
type=
"submit"
value=
"Ajouter cet horaire"
/
>
<
button>
Ajouter cet horaire
</button
>
<button
class=
"cancel"
>
Annuler
</button>
</form>
...
...
@@ -131,7 +131,7 @@ Tags :
<form
id=
"add-soundfile-form"
action=
"add-soundfile"
method=
"POST"
style=
"display: none;"
>
{% csrf_token %}
{{ add_soundfile_form.as_p }}
<
input
type=
"submit"
value=
"Ajouter ce son"
/
>
<
button>
Ajouter ce son
</button
>
<button
class=
"cancel"
>
Annuler
</button>
</form>
...
...
panikdb/templates/registration/login.html
View file @
185ca3d0
...
...
@@ -33,7 +33,7 @@ de nouveaux épisodes et nouvelles actualités.
{{ form.password }}
</p>
<
input
type=
"submit"
value=
"Se connecter"
class=
"submit login"
/
>
<
button>
Se connecter
</button
>
<input
type=
"hidden"
name=
"next"
value=
"{{ next }}"
/>
</form>
...
...
panikdb/templates/registration/password_change_form.html
View file @
185ca3d0
...
...
@@ -36,7 +36,7 @@
</fieldset>
<div
class=
"submit-row"
>
<input
type=
"submit"
value=
"{% trans 'Change my password' %}"
class=
"default"
/
>
<button>
{% trans 'Change my password' %}
</button
>
</div>
<script
type=
"text/javascript"
>
document
.
getElementById
(
"
id_old_password
"
).
focus
();
</script>
...
...
panikdb/templates/registration/password_reset_confirm.html
View file @
185ca3d0
...
...
@@ -14,7 +14,7 @@
<p
class=
"aligned wide"
><label
for=
"id_new_password1"
>
{% trans 'New password:' %}
</label>
{{ form.new_password1 }}
</p>
{{ form.new_password2.errors }}
<p
class=
"aligned wide"
><label
for=
"id_new_password2"
>
{% trans 'Confirm password:' %}
</label>
{{ form.new_password2 }}
</p>
<p><
input
type=
"submit"
value=
"{% trans 'Change my password' %}"
/
></p>
<p><
button>
{% trans 'Change my password' %}
</button
></p>
</form>
{% else %}
...
...
panikdb/templates/registration/password_reset_form.html
View file @
185ca3d0
...
...
@@ -12,7 +12,8 @@
<form
action=
""
method=
"post"
>
{% csrf_token %}
{{ form.email.errors }}
<p><label
for=
"id_email"
>
{% trans 'Email address:' %}
</label>
{{ form.email }}
<input
type=
"submit"
value=
"{% trans 'Reset my password' %}"
/></p>
<p><label
for=
"id_email"
>
{% trans 'Email address:' %}
</label>
{{ form.email }}
<button>
{% trans 'Reset my password' %}
</button></p>
</form>
{% endblock %}
panikdb/templates/search/search.html
View file @
185ca3d0
...
...
@@ -9,7 +9,7 @@
<tr>
<td>
</td>
<td>
<input
type=
"submit"
value=
"Rechercher"
>
<button>
Rechercher
</button
>
</td>
</tr>
</table>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment