-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SDK-142 : Use ActivityDetails helper in the example and amend user pr…
…ofile display (#16) * SDK-142 : Use ActivityDetails helper in the example and amend profile display * SDK-142 : Make the profile display nicer in the example
- Loading branch information
Showing
4 changed files
with
92 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,31 @@ | ||
|
||
body { | ||
margin-left: 33%; | ||
} | ||
/*DL, DT, DD TAGS LIST DATA*/ | ||
dl { | ||
margin-bottom:50px; | ||
} | ||
|
||
dl dt { | ||
background:#5f9be3; | ||
color:#fff; | ||
float:left; | ||
font-weight:bold; | ||
margin-right:10px; | ||
margin-bottom: 5px; | ||
padding:5px; | ||
float:left; | ||
clear:both; | ||
width:130px; | ||
} | ||
|
||
dl dd { | ||
margin:2px 0; | ||
padding:5px 0; | ||
float:left; | ||
} | ||
|
||
dl dd img { | ||
width: 100px; | ||
} |
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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script src="https://sdk.yoti.com/clients/browser.2.0.1.js"></script> | ||
<meta charset="utf-8"> | ||
<title>Your Site</title> | ||
|
||
<link rel="stylesheet" type="text/css" href="css/style.css"> | ||
|
||
<script src="https://sdk.yoti.com/clients/browser.2.0.1.js"></script> | ||
</head> | ||
<body> | ||
<h1>Your Site Information</h1> | ||
<span data-yoti-application-id="your App ID" | ||
data-yoti-type="inline" | ||
data-yoti-scenario-id="your Scenario ID" | ||
data-size="small"> | ||
Use Yoti! | ||
data-yoti-scenario-id="your Scenario ID"> | ||
Use Yoti | ||
</span> | ||
|
||
<!-- Initiate Yoti button --> | ||
<script> | ||
_ybg.init() | ||
</script> | ||
</body> | ||
<script> | ||
_ybg.init() | ||
</script> | ||
</html> |
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