25 lines
431 B
HTML
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>
|