diff options
Diffstat (limited to 'samples/TestAzureAD/Contact.aspx')
-rw-r--r-- | samples/TestAzureAD/Contact.aspx | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/samples/TestAzureAD/Contact.aspx b/samples/TestAzureAD/Contact.aspx new file mode 100644 index 0000000..4d57941 --- /dev/null +++ b/samples/TestAzureAD/Contact.aspx @@ -0,0 +1,50 @@ +<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="TestAzureAD.Contact" %> + +<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> + <hgroup class="title"> + <h1><%: Title %>.</h1> + <h2>Your contact page.</h2> + </hgroup> + + <section class="contact"> + <header> + <h3>Phone:</h3> + </header> + <p> + <span class="label">Main:</span> + <span>425.555.0100</span> + </p> + <p> + <span class="label">After Hours:</span> + <span>425.555.0199</span> + </p> + </section> + + <section class="contact"> + <header> + <h3>Email:</h3> + </header> + <p> + <span class="label">Support:</span> + <span><a href="mailto:Support@example.com">Support@example.com</a></span> + </p> + <p> + <span class="label">Marketing:</span> + <span><a href="mailto:Marketing@example.com">Marketing@example.com</a></span> + </p> + <p> + <span class="label">General:</span> + <span><a href="mailto:General@example.com">General@example.com</a></span> + </p> + </section> + + <section class="contact"> + <header> + <h3>Address:</h3> + </header> + <p> + One Microsoft Way<br /> + Redmond, WA 98052-6399 + </p> + </section> +</asp:Content>
\ No newline at end of file |