-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex.cshtml
More file actions
67 lines (60 loc) · 4.12 KB
/
Index.cshtml
File metadata and controls
67 lines (60 loc) · 4.12 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<section class="banner">
<img src="/images/banner-1.jpg" alt="banner">
<div class="banner-content">
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>
Get Started <br>
<span> Evaluate your Technical and Aptitude skills</span>
</h1>
<p></p>
@if(Session["EmailId"] != null)
{
if(Session["RoleId"] != null)
{
@*<div class="btn-block"> @Html.ActionLink("Create Quiz", "ShowQuiz", "Home", new { @class = "btn btn-primary"})*@ @*<a href="javascript:;" class="btn btn-primary" data-toggle="modal" data-target="#CreateQuiz"> Create Quiz</a>*@ @*<a href="javascript:;" class="btn white-btn" data-toggle="modal" data-target="#takeQuiz">Take Quiz</a>*@
@*@Html.ActionLink("Take Quiz", "TakeQuiz", "Home", new { @class = "btn white-btn" })*@
@*</div>*@
}
else
{
<div class="btn-block"> @Html.ActionLink("Take Test", "TakeQuiz", "Home", new { @class = "btn white-btn" })
</div>
@*<div class="btn-block">@Html.ActionLink("Take Programming Test","Index","ProgrammingTest",null, new { @class = "btn white-btn" })</div>*@
}
}
else
{
<div class="btn-block"> <a href="javascript:;" class="btn white-btn" data-toggle="modal" data-target="#login">Take Quiz</a>
@*<a href="javascript:;" class="btn white-btn" data-toggle="modal" data-target="#login">Create Survey</a>*@ </div>
<div class="btn-block">
<a href="javascript:;" data-go-to-href="@Url.Action("Index","ProgrammingTest")" class="btn white-btn" data-toggle="modal" data-target="#login">Take Programming Test</a>
@*<a href="javascript:;" class="btn white-btn" data-toggle="modal" data-target="#login">Create Survey</a>*@
</div>
}
</div>
</div>
</div>
</div>
</section>
<!-- banner ends here -->
<section id="about" class="about-us">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="heading">
<h3>About Softprodigy</h3>
<div class="g-hr"> <span class="g-hr-h"> <i class="fa fa-heart"></i> </span> </div>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
</div>
</div>
</div>
</section>