G
globalrev
i have a translator-program for the robbers language.
i want the user to input into the topwindow and then display the
encryption or decryption in the bottom window.
i am currently trying to do this via a python/webpy webapp but been
told it can be done with javascript.
how would i do this? i couldnt figure it out from the w3schools
tutorial.
and can i have a javascript to call another file? or i have to do the
translation in the html-file below? it could get very cluttery...
<html>
<body bgcolor="orange">
<center>
<h1><p><b>Robber's language encrypter/decrypter!</b></p></h1>
<form method=post>
<p>
<select name="encdec">
<option value="encrypt">encrypt</option>
<option value="decrypt">decrypt</option>
</select>
</p>
<textarea name="enc" rows="10" cols="50">
</textarea>
<p>
<input type="submit" value="submit" /><br />
</p>
</form>
<form method=post>
<textarea name="answer" rows="10" cols="50">
</textarea>
</form>
</center>
</body>
</html>
i want the user to input into the topwindow and then display the
encryption or decryption in the bottom window.
i am currently trying to do this via a python/webpy webapp but been
told it can be done with javascript.
how would i do this? i couldnt figure it out from the w3schools
tutorial.
and can i have a javascript to call another file? or i have to do the
translation in the html-file below? it could get very cluttery...
<html>
<body bgcolor="orange">
<center>
<h1><p><b>Robber's language encrypter/decrypter!</b></p></h1>
<form method=post>
<p>
<select name="encdec">
<option value="encrypt">encrypt</option>
<option value="decrypt">decrypt</option>
</select>
</p>
<textarea name="enc" rows="10" cols="50">
</textarea>
<p>
<input type="submit" value="submit" /><br />
</p>
</form>
<form method=post>
<textarea name="answer" rows="10" cols="50">
</textarea>
</form>
</center>
</body>
</html>