This file contains hidden or 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
{ | |
"filters": { | |
"templates": { | |
"settings": { | |
"enable": 1, | |
"template_id": "5997fcf6-2b9f-484d-acd5-7e9a99f0dc1f" | |
} | |
} | |
} | |
} |
This file contains hidden or 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
POST https://api.sendgrid.com/v3/campaigns HTTP/1.1 |
This file contains hidden or 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
POST https://api.sendgrid.com/v3/marketing/field_definitions HTTP/1.1 |
This file contains hidden or 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
<div class="input-text-wrap"> | |
<label class="input-text-label" for="input-text-example-default">Username</label> | |
<input type="text" id="input-text-example-default"> | |
</div> |
This file contains hidden or 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
<div class="input-text-wrap is-required"> | |
<label class="input-text-label" for="input-text-example-required">Username</label> | |
<input type="text" id="input-text-example-required"> | |
</div> |
This file contains hidden or 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
<div class="input-text-wrap is-disabled"> | |
<label class="input-text-label" for="input-text-example-disabled">Username</label> | |
<input type="text" id="input-text-example-disabled" disabled> | |
</div> |
This file contains hidden or 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
<div class="input-text-wrap is-required is-error"> | |
<label class="input-text-label" for="input-text-example-error">Username</label> | |
<input type="text" id="input-text-example-error"> | |
<span class="input-info danger">State is a required field.</span> | |
</div> |
This file contains hidden or 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
<div class="input-text-wrap"> | |
<label class="input-text-label" for="input-text-example-muted">Username</label> | |
<input type="text" id="input-text-example-muted"> | |
<span class="input-info">Make sure you choose an awesome username.</span> | |
</div> |
This file contains hidden or 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
<div class="input-text-wrap is-search"> | |
<label class="input-text-label" for="input-text-example-search">Search</label> | |
<input type="text" id="input-text-example-search" value="whitelabel"> | |
<div class="input-search-results"> | |
<p class="search-results-title">Search for "whitelabel"</p> | |
<span class="loading"></span> | |
<ul class="search-results"> | |
<li class="search-result">Whitelabels are cool</li> | |
<li class="search-result">Really, really long title about whitelabels</li> | |
<li class="search-result">Whitelabels are nifty</li> |
This file contains hidden or 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
<div class="input-text-wrap"> | |
<label class="input-text-label" for="input-text-example-ccv">CCV</label> | |
<input type="text" id="input-text-example-ccv"> | |
<div class="input-info-tooltip"> | |
<span data-tooltip="The CCV number is a 3 or 4 digit security code printed on the front or back of your card." data-tooltip-pos="right" data-tooltip-length="large"> | |
<i class="sg-icon sg-icon-info-circle input-info-icon" id="input-info-ccv"></i> | |
</span> | |
</div> | |
</div> |