en.javascript.info/2-ui/4-forms-controls/4-forms-submit/1-modal-dialog/source.view/index.html
Ilya Kantor e2443e8de6 ok
2017-03-19 16:59:53 +03:00

25 lines
431 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="prompt-form-container">
<form id="prompt-form">
<div id="prompt-message">Enter something...
<br>Please..</div>
<input name="text" type="text">
<input type="submit" value="Ok">
<input type="button" name="cancel" value="Cancel">
</form>
</div>
</body>
</html>