Just use the <input type="text"> and <input type="password">. You can also use the prompt() function, but... I'd recommend against it, since it doesn't get censored and is also just plain annoying.
Use a counted for loop. On each iteration, multiply the control variable by 2 and print the result.
the input password is :password
dim a input a
function validate(form) { var e = form.elements; /* Your validation code. */ if(e['password'].value != e['confirm-password'].value) { alert('Your passwords do not match. Please type more carefully.'); return false; } return true; } with a form along the lines of <form action="..." method="post" onsubmit="return validate(this);"> <label>Password: <input type="password" name="password" value=""> </label> <label>Confirm password: <input type="password" name="confirm-password" value=""> </label> </form>
write a c program that takes a binary file as input and finds error check using different mechanisms.
Javascript is a browser-run script, so I highly doubt that Javascript possesses the capabilities to create 3-D images, but it can input them into the webpage.
<script type = "text/javascript"> var input; var rev = 0; input=window.prompt ("Please enter a 5-digit number to be reversed."); input = input * 1; while (input > 0) { rev *= 10; rev += input % 10; input /= 10; } document.write ("Reversed number: " + rev); </script>
<input type="text" /> That could be used for a username <input type="password" /> That could be used as a password.
Write a program in c++ that take input in a integer matrix of size 4*4 and find out if the entered matrix is diagonal or not.
write a program that reads in the size of the side of square and then pints a hollow square of that size out of asterisks and blanks?
radioButton.disabled=true; to disable with javascript <input type="radio" disabled> to disable it with html radioButton.disabled=false; to enable with javascript
(ab)*b