1+ <h4 >@Html.Raw(ViewBag.CodeExampleText.ExampleName) </h4 >
2+
3+ <p >
4+ @Html.Raw(ViewBag.CodeExampleText.ExampleDescription)
5+ </p >
6+ <p >
7+
8+ API method used:
9+ <a target =' _blank'
10+ href =" @ViewBag.CodeExampleText.LinksToApiMethod[0].Path" >@ViewBag.CodeExampleText.LinksToApiMethod [0].PathName</a >
11+ </p >
12+
13+ <p >
14+ @Html.Raw(
15+ @String.Format(
16+ ViewBag.SupportingTexts.ViewSourceFile,
17+ "<a target =' _blank' href =" + @ViewBag.source + " >TriggerWorkflow.cs</a >"
18+ )
19+ )
20+ </p >
21+
22+ <form class =" eg" action =" " method =" post" data-busy =" form" >
23+ <div class =" form-group" >
24+ <label for =" instanceName" >
25+ @Html.Raw(ViewBag.CodeExampleText.Forms [0].Inputs[0].InputName)
26+ </label >
27+ <input type =" text" class =" form-control" id =" instanceName" name =" instanceName"
28+ placeholder =" @ViewBag.CodeExampleText.Forms[0].Inputs[0].InputPlaceholder" required >
29+ </div >
30+ <div class =" form-group" >
31+ <label for =" signerEmail" >
32+ @Html.Raw(ViewBag.CodeExampleText.Forms [0].Inputs[1].InputName)
33+ </label >
34+ <input type =" email" class =" form-control" id =" signerEmail" name =" signerEmail" aria-describedby =" emailHelp"
35+ value =" @ViewBag.Locals.DsConfig.SignerEmail"
36+ placeholder =" @ViewBag.CodeExampleText.Forms[0].Inputs[1].InputPlaceholder" required >
37+ <small id =" emailHelp"
38+ class =" form-text text-muted" >@Html.Raw(ViewBag.SupportingTexts.HelpingTexts.EmailWontBeShared) </small >
39+ </div >
40+ <div class =" form-group" >
41+ <label for =" signerName" >
42+ @Html.Raw(ViewBag.CodeExampleText.Forms [0].Inputs[2].InputName)
43+ </label >
44+ <input type =" text" class =" form-control" id =" signerName" name =" signerName"
45+ value =" @ViewBag.Locals.DsConfig.SignerName"
46+ placeholder =" @ViewBag.CodeExampleText.Forms[0].Inputs[2].InputPlaceholder" required >
47+ </div >
48+ <div class =" form-group" >
49+ <label for =" ccEmail" >
50+ @Html.Raw(ViewBag.CodeExampleText.Forms [0].Inputs[3].InputName)
51+ </label >
52+ <input type =" email" class =" form-control" id =" ccEmail" name =" ccEmail" aria-describedby =" emailHelp"
53+ placeholder =" @ViewBag.CodeExampleText.Forms[0].Inputs[3].InputPlaceholder" required >
54+ <small id =" emailHelp"
55+ class =" form-text text-muted" >@Html.Raw(ViewBag.SupportingTexts.HelpingTexts.CcEmailShouldDifferFromSigner) </small >
56+ </div >
57+ <div class =" form-group" >
58+ <label for =" ccName" >
59+ @Html.Raw(ViewBag.CodeExampleText.Forms [0].Inputs[4].InputName)
60+ </label >
61+ <input type =" text" class =" form-control" id =" ccName" name =" ccName"
62+ placeholder =" @ViewBag.CodeExampleText.Forms[0].Inputs[4].InputPlaceholder" required >
63+ </div >
64+ <button type =" submit" class =" btn btn-primary" >@Html.Raw(ViewBag.SupportingTexts.SubmitButton) </button >
65+ </form >
0 commit comments