summaryrefslogtreecommitdiffstats
path: root/chrome/browser/remoting/resources/remoting_setup_done.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/remoting/resources/remoting_setup_done.html')
-rw-r--r--chrome/browser/remoting/resources/remoting_setup_done.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/chrome/browser/remoting/resources/remoting_setup_done.html b/chrome/browser/remoting/resources/remoting_setup_done.html
new file mode 100644
index 0000000..88a365c
--- /dev/null
+++ b/chrome/browser/remoting/resources/remoting_setup_done.html
@@ -0,0 +1,67 @@
+<html i18n-values="dir:textdirection;">
+<head>
+<title></title>
+<style type="text/css">
+body {
+ background: #FFFFFF;
+ font-size: 11pt;
+ line-height: 1.5em;
+ margin: 10px 15px;
+ -webkit-user-select: none;
+}
+.remoting-header {
+ font-size: 1.2em;
+ font-weight: bold;
+}
+.remoting-success-image {
+ text-align: center;
+ margin: 20px;
+}
+#message {
+ font-weight: bold;
+}
+.remoting-footer {
+ position: fixed;
+ right: 0px;
+ bottom: 0px;
+ margin-right: 10px;
+ margin-bottom: 10px;
+}
+html[dir='rtl'] .remoting-footer {
+ text-align: left;
+ left: 0px;
+ bottom: 0px;
+ margin-left: 20px;
+}
+input[type='submit'] {
+ min-width: 87px;
+ min-height: 26px;
+}
+html[os='mac'] input[type='submit'] {
+ font-size: 12pt;
+}
+
+</style>
+<script>
+ function setShowFirstTimeSetupSummary() {
+ document.getElementById("summary").innerHTML =
+ templateData['firsttimesetupsummary'];
+ }
+ function setMessage(msg) {
+ document.getElementById('msgContent').innerHTML = msg;
+ }
+ function onPageShown() {
+ document.getElementById("close").focus();
+ }
+</script>
+</head>
+<body i18n-values=".style.fontFamily:fontfamily">
+ <div class="remoting-header" i18n-content="success"></div>
+ <div id="msgContent"></div>
+ <div id="summary" i18n-content="setupsummary"></div>
+ <div class="remoting-footer">
+ <input id="close" type="submit" i18n-values="value:okay"
+ onclick='chrome.send("DialogClose", [""])' />
+ </div>
+</body>
+</html>