Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions ciphers/caesar.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ <h1>Caesar Cipher</h1>
</div>
<div class="form-container">
<form id="submitForm" action="#" method="get" onsubmit="return false;">
<div class="container">
<label for="plainText"><b>Enter The Message :</b></label>
<input type="text" id="plainText" placeholder="Enter Plain Text" name="plainText" required>
<label for="key"><b>Enter Key (Number of Shifts) :</b></label>
<input type="number" id="key" placeholder="Enter Key" name="key" required>
</div>
<button class="btn-grad btn-encrypt" onclick="caesarCipher(false)">Encrypt !</button>
<button class="btn-grad btn-encrypt" onclick="caesarCipher(true)">Decrypt !</button>
</form>
Expand Down