|
|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>Delete confirmation</title>
- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
- <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
- <script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- </head>
-
- <body>
- <div data-role="page" id="alert" data-theme="b">
- <div data-role="header">
- <h1>Conirmation</h1>
- </div>
- <div data-role="content">
- <h2>Are you sure to delete this book?</h2>
- <p>Author: <b>Maximiliano Firtman</b></p>
- <p><a href="ch01_07-2.html" data-role="button">Yes, delete</a></p>
- <p><a href="ch01_07-0.html" data-role="button" data-rel="back">Cancel</a></p>
- </div>
- </div>
- </body>
- </html>
|