-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Plumb5
authored and
Plumb5
committed
Aug 24, 2024
1 parent
b6ac524
commit 13d45c2
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Microsoft.AspNetCore.Mvc; | ||
using Plumb5.Controllers; | ||
|
||
namespace Plumb5.Areas.UCP.Controllers | ||
{ | ||
[Area("UCP")] | ||
public class UsersJourneyController : BaseController | ||
{ | ||
public UsersJourneyController(IConfiguration _configuration) : base(_configuration) | ||
{ } | ||
public ActionResult Index() | ||
{ | ||
return View("UsersJourney"); | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@{ | ||
ViewBag.Title = "UsersJourney"; | ||
Layout = "~/Views/Shared/PlumbAccountMaster.cshtml"; | ||
} | ||
|
||
<section class="sheet"> | ||
<div class="pageheader"> | ||
<h6 class="pagetitle">Contact UCP</h6> | ||
<div class="contactUcpbread"> | ||
<ol class="breadcrumb slim-breadcrumb"> | ||
<li class="breadcrumb-item"> | ||
<a href="#">Contacts</a> | ||
</li> | ||
<li class="breadcrumb-item active" aria-current="page">Contacts UCP</li> | ||
</ol> | ||
</div> | ||
</div> | ||
<div class="container-UCP" style="height:300px"> | ||
<div class="row"> | ||
<label id="urlid"> Please Enter a proper url values in following format https://dashboard.plumb5.com/ucp/usersJourney?aid=0&cid=0&mid=0 </label> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
@{ | ||
Html.RenderPartial("_ContactUCP"); | ||
} | ||
<script src="~/js/UsersJourney.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
$(document).ready(() => { | ||
$('#ui_divContactUCPScreen').css('margin-top', '76px'); | ||
$('#ui_divCloseUCP').css('display', 'none'); | ||
$('.sidebar,.barMenu').css('display', 'none'); | ||
$('.dropdown-item').css('display', 'none'); | ||
$('a[href="/Login/SignOut"]').css('display', 'block'); | ||
|
||
const aid = $.urlParam("aid") | ||
const mid = $.urlParam("mid"); | ||
const cid = $.urlParam("cid") | ||
const label = document.getElementById("urlid"); | ||
if (mid == 0 && cid == 0) { | ||
label.style.display = "inline"; | ||
} | ||
else { | ||
label.style.display = "None"; | ||
ShowContactUCP($.urlParam("mid"), "", $.urlParam("cid")); | ||
} | ||
|
||
|
||
}); |