prevent autocomplete; copy
This commit is contained in:
parent
1bb9ce05ab
commit
791b6ad5b1
19
index.pug
19
index.pug
|
@ -15,25 +15,28 @@ html(lang="en-gb")
|
||||||
button.normal.pagination.next#load load an existing bitsy game
|
button.normal.pagination.next#load load an existing bitsy game
|
||||||
.page.game-data
|
.page.game-data
|
||||||
h2 game data
|
h2 game data
|
||||||
input#game(type="file")
|
input#game(type="file" autocomplete="off")
|
||||||
br
|
br
|
||||||
textarea#game-data(placeholder="Paste your game data here or use the file chooser button above")
|
textarea#game-data(
|
||||||
|
placeholder="Paste your game data here or use the file chooser button above"
|
||||||
|
autocomplete="off"
|
||||||
|
)
|
||||||
button.pagination.prev previous
|
button.pagination.prev previous
|
||||||
button.pagination.next#game-data-next(disabled=true) next
|
button.pagination.next#game-data-next(disabled=true) next
|
||||||
.page.image
|
.page.image
|
||||||
h2 image
|
h2 image
|
||||||
.image-container
|
.image-container
|
||||||
input#image(type="file")
|
input#image(type="file" autocomplete="off")
|
||||||
img#preview
|
img#preview
|
||||||
button.pagination.prev previous
|
button.pagination.prev previous
|
||||||
button.pagination.next next
|
button.pagination.next next
|
||||||
.page.extras
|
.page.extras
|
||||||
h2 tiles
|
h2 tiles
|
||||||
label
|
label
|
||||||
| tile name prefix
|
| tile name prefix (optional)
|
||||||
input#prefix(type="text" placeholder="e.g. 'forest'")
|
input#prefix(type="text" placeholder="e.g. 'forest'" autocomplete="off")
|
||||||
p.
|
p.
|
||||||
to help you find your new tiles in Bitsy,
|
to help you find your new tiles in Bitsy, #[br]
|
||||||
new tiles will be named #[span#tile-name-preview e.g. 'forest 1']
|
new tiles will be named #[span#tile-name-preview e.g. 'forest 1']
|
||||||
|
|
||||||
h3 create alternate versions
|
h3 create alternate versions
|
||||||
|
@ -51,7 +54,7 @@ html(lang="en-gb")
|
||||||
input(type="checkbox")#rotate
|
input(type="checkbox")#rotate
|
||||||
| rotated
|
| rotated
|
||||||
p.
|
p.
|
||||||
some tile sheets assume you will be able to flip and rotate their tiles;
|
some tile sheets assume you will be able to flip and rotate their tiles.
|
||||||
Bitsy does not allow this, so it may be easier
|
Bitsy does not allow this, so it may be easier
|
||||||
to generate these alternate versions here.
|
to generate these alternate versions here.
|
||||||
p.
|
p.
|
||||||
|
@ -60,7 +63,7 @@ html(lang="en-gb")
|
||||||
button.pagination.next#import next
|
button.pagination.next#import next
|
||||||
.page.download
|
.page.download
|
||||||
h2 download
|
h2 download
|
||||||
textarea#output
|
textarea#output(autocomplete="off")
|
||||||
br
|
br
|
||||||
button#download download
|
button#download download
|
||||||
button.pagination.prev#add add another image
|
button.pagination.prev#add add another image
|
||||||
|
|
Loading…
Reference in New Issue