Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shared/style/confirm/no_title.html
diff options
context:
space:
mode:
Diffstat (limited to 'shared/style/confirm/no_title.html')
-rw-r--r--shared/style/confirm/no_title.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/shared/style/confirm/no_title.html b/shared/style/confirm/no_title.html
new file mode 100644
index 0000000..dc59be2
--- /dev/null
+++ b/shared/style/confirm/no_title.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+
+ <title>Confirm, w/o title</title>
+ <meta name="description" content="Prompts user to take action">
+
+ <link rel="stylesheet" href="../confirm.css">
+
+ <!--
+ - This <style> element is only used for the example code;
+ - it is not required for the real use case.
+ -->
+ <style type="text/css">
+ html, body {
+ margin: 0;
+ padding: 0;
+ font-size: 10px;
+ background-color: #fff;
+ }
+ body {
+ background: none;
+ }
+ </style>
+</head>
+
+<body role="application">
+
+ <form role="dialog" data-type="confirm">
+ <section>
+ <p>Are you sure you want to delete this contact?</p>
+ </section>
+ <menu>
+ <button>Cancel</button>
+ <button class="danger">Delete</button>
+ </menu>
+ </form>
+
+</body>
+</html>
+