-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.aspx
75 lines (65 loc) · 2.8 KB
/
welcome.aspx
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="welcome.aspx.cs" Inherits="Storichain.WebSite.User.welcome" EnableEventValidation="true" %>
<%@ Register Src="~/Libs/header.ascx" TagPrefix="uc1" TagName="header" %>
<%@ Import Namespace="Storichain" %>
<%@ Import Namespace="Storichain.Models.Biz" %>
<%@ Import Namespace="Storichain.Models" %>
<%@ Import Namespace="System.Data" %>
<html lang="ko" class=" ">
<head>
<uc1:header runat="server" ID="header" />
<script type="text/javascript">
var g_user_idx = <%=WebUtility.UserIdx()%>;
$(function() {
$('#btnSave').click(function (e) {
e.preventDefault();
if(!confirm('Do you want to save your data?'))
return false;
$('#hdfRole').val($("input[name=choose]").filter(":checked").val());
__doPostBack('lbnSend','');
});
});
</script>
</head>
<body class="wbd">
<form id="form1" runat="server">
<div class="header mhd">
<div class="mhd_lg">
<div class="hd_wrap">
<h1 class="ptit"><a href="welcome">Welcome</a></h1>
<a href="discover" class="btn btn_go_home"><span class="blind">Home</span></a>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="ct_wrap">
<h2 class="ct_logo"><img src="/images/logo_txt.png" alt="storichain" /></h2>
<fieldset>
<div class="welcome_wrap">
<h2 class="welcome_tit">Welcome!</h2>
<div class="welcome_ct">
<p class="welcome_txt1">Now, you can creat, sell, trade, <br />fund stories assets</p>
<h3 class="choose">Choose Your User Role</h3>
<ul class="choose_lst">
<li><span><input type="radio" id="storyteller" name="choose" value="5" checked="checked"><label id="stLb" for="storyteller">Storyteller</label></span></li>
<li><span><input type="radio" id="reader" name="choose" value="7"><label id="stLb" for="reader">Reader</label></span></li>
<li><span><input type="radio" id="pd" name="choose" value="4"><label id="stLb" for="pd">PD</label></span></li>
</ul>
<p class="welcome_txt2">Check your email <a href="mailto:<%= PageUtility.UserId() %>">(<%= PageUtility.UserId() %>)</a><br /> and click the registration link.</p>
<p class="welcome_txt3">the registration linke validates 7 days only.</p>
<p class="welcome_txt4">check the spam mail box too</p>
</div>
<ul class="form_btn form_btn1">
<li><span><button class="btn_r btn_l btn_cp" id="btnSave">Save</button></span></li>
</ul>
</div>
</fieldset>
</div>
</div>
</div>
<asp:LinkButton ID="lbnSend" runat="server" OnClick="btnSend_Click"></asp:LinkButton>
<asp:Literal ID="ltrScript" runat="server"></asp:Literal>
<asp:HiddenField ID="hdfRole" runat="server" />
</form>
</body>
</html>