-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathView.aspx
More file actions
43 lines (42 loc) · 1.72 KB
/
View.aspx
File metadata and controls
43 lines (42 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%@ Page Title="View" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="View.aspx.cs" Inherits="QRJ.View" %>
<asp:Content runat="server" ID="FeaturedContent" ContentPlaceHolderID="FeaturedContent">
<section class="featured">
<div class="content-wrapper" id="InactiveHeader" runat="server">
<hgroup class="title">
<h2>Please activate your QR Code.</h2>
</hgroup>
</div>
<div class="content-wrapper" id="ActiveHeader" runat="server">
<hgroup class="title">
<h2>Code not linked to a video.</h2>
</hgroup>
</div>
</section>
</asp:Content>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<div id="InactiveBody" runat="server">
<h3>Instructions:</h3>
<ol class="round">
<li class="one">
<h5>Visit our web page</h5>
Go to <a id="homePage" runat="server"></a>
</li>
<li class="two">
<h5>Register or login</h5>
Click on Register to create an account, or Login if you already have one.
</li>
<li class="three">
<h5>Activate product</h5>
On your account page, click on “Activate new product” button. Enter the activation code:
<h5 id="activationCode" runat="server"></h5>
</li>
<li class="four">
<h5>Upload</h5>
Upload your video
</li>
</ol>
</div>
<div id="ActiveBody" runat="server">
<h3>The code has been activated by a user but it has not been linked to a video.</h3>
</div>
</asp:Content>