Debug.dothtml

24 lines | 974 B Blame History Raw Download
@viewModel Web.ViewModels.DebugViewModel, Web

<!doctype html>
<html lang="en-us">
<head>
    <meta charset="utf-8">
    <title>Debug</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="icon" href="/favicon.ico" sizes="any">
    <meta name="theme-color" content="#fafafa">
    <dot:RequiredResource Name="Styles" />
</head>
<body Visible="{value: _page.EvaluatingOnClient}">
    <cl:ConfirmationModal ButtonsOnly="false"
                          CheckboxText="Do you wish to enable next button?"
                          ModalHeader="Next Button"
                          ModalText="{value: Message}"
                          ModalVisible="{value: Show}"
                          SubmitButtonCommand="{command: OnSubmitClick()}"></cl:ConfirmationModal>    
    <bs:Button Click="{command: OnShowClick()}" IncludeInPage="{value: !Show}" Text="Confirm" Type="Danger" />
</body>
</html>