diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-05 15:36:55 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-05 15:36:55 -0700 |
commit | 49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c (patch) | |
tree | 9b836b0b9e94b8aa1e650c68e714bc214439d8da /samples/TestAzureAD/Contact.aspx | |
parent | 7edb0a63ef796af300c670ce90df8e7670930a10 (diff) | |
parent | 489bf70111fe4839e87fa591928d2845341f0059 (diff) | |
download | DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.zip DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.tar.gz DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.tar.bz2 |
Adds Azure Active Directory OAuth 2 client.
Closes #271
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 |