Sunday 31 December 2017

Customize Registration Page in CRM Portals

Customise Portal Registration Page

Create a Content Snippet record (Portal > Content Snippet >New) with below details:
Name : Account/Register/PageCopy
Website : <website name>
Type : Html
Value: write your own HTML/DOM/JQuery code to add your custom controls and perform validations.

Customise Portal Login Page

Create a Content Snippet record (Portal > Content Snippet >New) with below details:
Name : Account/SignIn/PageCopy
Website : <website name>
Type : Html
Value: write your own HTML/DOM/JQuery code to add your custom controls and perform validations.

Visit : http://arpitmscrmhunt.blogspot.in/2017/05/edit-stylelayout-of-login-page-in-crm.html

Here is the sample code snippet for Registration Page:

In this example, I am adding two additional fields (Date of Birth and SSN) on Portal Registration Page.

// Code to add custom Date Of Birth Field
$('#ContentContainer_MainContent_MainContent_ShowUserName').next().next().after('<div class="form-group"><label class="col-sm-4 control-label required"><span id="ContentContainer_MainContent_MainContent_dob"><span class="xrm-editable-text xrm-attribute"><span class="xrm-attribute-value">Date Of Birth</span></span></span></label><div class="col-sm-8"><input id="ContentContainer_MainContent_MainContent_dob" class="form-control" aria-required="true"></div></div>');

// Code to add custom SSN Field
$('#ContentContainer_MainContent_MainContent_ShowUserName').next().next().after('<div class="form-group"><label class="col-sm-4 control-label required"><span id="ContentContainer_MainContent_MainContent_ssn"><span class="xrm-editable-text xrm-attribute"><span class="xrm-attribute-value">SSN</span></span></span></label><div class="col-sm-8"><input id="ContentContainer_MainContent_MainContent_ssn" class="form-control" aria-required="true"></div></div>');

//Code to Add Custom 'Register' Button and Hide the original one
$('#SubmitButton').after('<input type="submit" name="ctl00$ctl00$ContentContainer$MainContent$MainContent$mySubmitButton" value="Register" id="mySubmitButton" class="btn btn-primary">');

$('#SubmitButton').hide();



//Now you can handle the click of custom 'Register' button.
$("#mySubmitButton").click(function()
{
if(all validation pass)
{
var ssnInput = $('#ContentContainer_MainContent_MainContent_ssn').val();
var dobInput= $('#ContentContainer_MainContent_MainContent_dob').val();
localStorage.setItem("ssn", ssnInput );
localStorage.setItem("dob", dobInput);
$('#SubmitButton').click();
}
else
{
alert('throw error');
}
});
//Above Code Means :
// If all the validation pass then: store SSN and DOB in local storage and trigger click on the actual register button else throw your custom error message.
// We will have to store SSN and DOB in cache/localstorage, because we don't have a direct way to store it in CRM. Other data portal will automatically store in CRM like : Email, Username, Password, Confrm Password.

// As soon as user will be redirected to profile page after successful registration, we can write below two line of code in profile webpage (under custom javascript) section to get the SSN and DOB from cache or local storage and put it in profile custom SSN and DOB fields in order to store it in CRM.

$(document).ready(function(){
$('#profilepage_SSN_field').val(localStorage.getItem("ssn"));
$('#profilepage_DOB_field').val(localStorage.getItem("dob"));
localStorage.clear();
});

Complete Code :


<script>
   changeRegistraionPageUI();
  function changeRegistraionPageUI()
  {
     $(window).load(function() {

 // Code to add custom Date Of Birth Field
$('#ContentContainer_MainContent_MainContent_ShowUserName').next().next().
after('<div class="form-group"><label class="col-sm-4 control-label required"><span 
id="ContentContainer_MainContent_MainContent_dob"><span class="xrm-editable-text xrm-attribute">
<span class="xrm-attribute-value">Date Of Birth</span></span></span></label><div class="col-sm-8">
<input id="ContentContainer_MainContent_MainContent_dob" class="form-control" aria-required="true">
</div></div>');

// Code to add custom SSN Field
$('#ContentContainer_MainContent_MainContent_ShowUserName').next().next().
after('<div class="form-group"><label class="col-sm-4 control-label required">
<span id="ContentContainer_MainContent_MainContent_ssn">
<span class="xrm-editable-text xrm-attribute">
<span class="xrm-attribute-value">SSN</span></span></span></label>
<div class="col-sm-8"><input id="ContentContainer_MainContent_MainContent_ssn" 
class="form-control" aria-required="true"></div></div>');

//Code to Add Custom 'Register' Button and Hide the original one
$('#SubmitButton').after('<input type="submit" 
name="ctl00$ctl00$ContentContainer$MainContent$MainContent$mySubmitButton" 
value="Register" id="mySubmitButton" class="btn btn-primary">');

$('#SubmitButton').hide();
});
  }
</script>










Change Look and Feel of Registration Page :


$("#ContentContainer_MainContent_MainContent_SecureRegister").css({"background-color": "antiquewhite", "border-style": "groove", "border-radius": "18px", "width": "90%", "margin-left": "auto", "margin-right": "auto", "padding": "18px", "box-shadow":"5px 11px 47px black","margin-top":"-15px"});





Cheers

53 comments:

  1. Hello Arpit,

    I am using AdxStudio 7.0.0026 portal, and tried this code but this shows $('#ContentContainer_MainContent_MainContent_ShowUserName').next().next().after( and then the field, somehow it's not taking the effect of line with $, I am new to portal, so let me know if I am missing any basic thing. Thanks.

    Cheers,

    Mudit

    ReplyDelete
    Replies
    1. Hi Mudit,

      Were you able to resolve this? I' am also experiencing the same.

      Delete
    2. OFFICIAL HACKING COMPANY IS THE BEST SITE TO GET BLANK ATM CARD.I was searching for loan to sort out my bills& debts, then i saw comments about Blank ATM Credit Card that can be hacked to withdraw money from any ATM machines around you . I doubted thus but decided to give it a try by contacting (officialhackingcompany@gmail.com} they responded with their guidelines on how the card works. I was assured that the card can withdraw $5,000 instant per day & was credited with$50,000,000.00 so i requested for one & paid the delivery fee to obtain the card, after 24 hours later, i was shock to see the UPS agent in my resident with a parcel{card} i signed and went back inside and confirmed the card work's after the agent left. This is no doubts because i have the card & has made used of the card. This hackers are USA based hackers set out to help people with financial freedom!! Contact these email if you wants to get rich with this Via: officialhackingcompany@gmail.com 

      Delete
  2. Hey Arpit,
    Regarding Content snippets, I had a hard time figuring out what the name should be. For example here in the above case, how did you get to decide the name as 'Account/Register/PageCopy' for modifying the register page? is there any documentation on what the names should be for specific snippets? Only resource found online is snippets details form adx. Here is the link https://community.adxstudio.com/products/adxstudio-portals/documentation/end-users-guide/content-management/content-snippets/content-snippets/

    If you can point me to the right resource for Dynamics portals, that would be helpful.

    Thanks,
    Chandrahas.

    ReplyDelete
  3. How to update the custom field values to CRM Contact Entity after getting it from localstorage? Can provide any code snippet/general idea to update?

    ReplyDelete
  4. How did you find Account/SignIn/PageCopy snippet?
    How do we decide on this name ?

    ReplyDelete
  5. Hi Arpit i want to add an checkbox below the I have an existing account checkbox how can i do that?

    ReplyDelete
  6. Mudit\Unknown and Chandrahas did you guys follow the link ? that will answer your question : here it is again : http://arpitmscrmhunt.blogspot.in/2017/05/edit-stylelayout-of-login-page-in-crm.html

    ReplyDelete


  7. My name is Leah Brown, I'm a happy woman today? I told myself that any loan lender that could change my life and that of my family after having been scammed separately by these online loan lenders, I will refer to anyone who is looking for loan for them. It gave me and my family happiness, although at first I had a hard time trusting him because of my experiences with past loan lenders, I needed a loan of $300,000.00 to start my life everywhere as single mother with 2 children, I met this honest and God fearing online loan lender Gain Credit Loan who helped me with a $300,000.00 loan, working with a loan company Good reputation. If you are in need of a loan and you are 100% sure of paying the loan please contact (gaincreditloan1@gmail.com)

    ReplyDelete
  8. Hello Arpit,
    Thanks for wonderful post.
    I am working on Dynamics 365 portal, where Registration page has customized with addition fields (First Name, Last name, City etc.). I want to modify the respective JS validation code for new fields.
    In CRM I am not able to find the respective code, I checked all the content snippet but I didn’t find the code.
    When I ran Portal and debug in browser using developer tool I can see the custom JavaScript code. But didn’t find it in CRM even I didn't find the Account/Registration/PageCopy Content snippet.
    Please suggest.
    Let me know if further details are required.
    Best regards,
    Girish Soni
    Girish.soni@yahoo.com

    ReplyDelete
  9. Hi Arpit need you help.

    $("#mySubmitButton").click(function()
    {
    if(all validation pass)
    {
    var ssnInput = $('#ContentContainer_MainContent_MainContent_ssn').val();
    var dobInput= $('#ContentContainer_MainContent_MainContent_dob').val();
    localStorage.setItem("ssn", ssnInput );
    localStorage.setItem("dob", dobInput);
    $('#SubmitButton').click();
    }
    else
    {
    alert('throw error');
    }
    });

    where to write this js.
    Actually i have written this js inside the Account/Register/PageCopy and i am getting error for if(all validation pass).

    Please suggest

    ReplyDelete
  10. Hi Mudit,

    Were you able to resolve your issue? I'am also encountering the same.

    ReplyDelete
  11. Hi Arpit, please let me know if you have a solution for below.
    When i click on "Sign in " top right , it should login based on Azure AD authentication. If it can't find contact from Azure it should display "sign in with local account page" to login from "gmail, hotmail...etc". Issue for me "Authentication/Registration/LoginButtonAuthenticationType" parameter from site settings will take it to external authenation(azure Ad) and not showing "local login" page though i have enabled all the required parametes. Please let me know if you have any solution for this?

    Thanks.

    ReplyDelete
  12. A Wikipedia page creation organization must discover some approach to embed a connect to a site in such a manner where the connection is viewed as an asset in the field, or subject, being talked about.
    Wikipedia writers

    ReplyDelete
  13. You are very articulate and explain your ideas and opinions clearly leaving no room for miscommunication.
    Please Kindly check My web: buy youtube comments

    ReplyDelete
  14. The potential benefit of a customer relationship management (CRM) solution for business has made implementing and integrating CRM solutions almost mandatory. CRM has enabled greater reach and improvement in service delivery to customers and personalization. The best crm can assist in applying analytics to customer data, increase sales, and enhance customer satisfaction.

    ReplyDelete
  15. You are very articulate and explain your ideas and opinions clearly leaving no room for miscommunication.Please Kindly check My web: video mp3 converter

    ReplyDelete
  16. You are very articulate and explain your ideas and opinions clearly leaving no room for miscommunication.Please Kindly check My web:"buy tiktok comments''

    ReplyDelete
  17. I definitely enjoying every little bit of it. It is a great website and nice share. I want to thank you. Good job! You guys do a great blog, and have some great contents. Keep up the good work.
    Tropic Diva

    ReplyDelete
  18. Hey, great blog, but I don’t understand how to add your site in my reader. Can you Help me please?
    bandar slot terpercaya

    ReplyDelete
  19. This comment has been removed by a blog administrator.

    ReplyDelete
  20. Positive site, where did u develop the info on this publishing? I have checked out a few of the articles on your website now, as well as I actually like your design. Many thanks a million and also please keep up the reliable work. fiverr seo

    ReplyDelete
  21. I can see that you are an expert at your field! I am launching a website soon, and your information will be very useful for me.. Thanks for all your help and wishing you all the success in your business. nature beauty quotes

    ReplyDelete
  22. I really loved reading your blog. It was very well authored and easy to undertand. Unlike additional blogs I have read which are really not tht good. I also found your posts very interesting. In fact after reading, I had to go show it to my friend and he ejoyed it as well! Dofollow SEO Backlink blog comments

    ReplyDelete
  23. great article. How do I rename the label "Register for a new local account" and how do I hide The Azure Button / label? Lastly on click register how do I redirect to a personalized Profile Page?

    ReplyDelete


  24. INSTEAD OF GETTING A LOAN,, I GOT SOMETHING NEW
    Get $10,050 USD every week, for six months!

    See how it works
    Do you know you can hack into any ATM machine with a hacked ATM card??
    Make up you mind before applying, straight deal...
    Order for a blank ATM card now and get millions within a week!: contact us
    via email address:: besthackersworld58@gmail.com or whats-app +1(323)-723-2568

    We have specially programmed ATM cards that can be use to hack ATM
    machines, the ATM cards can be used to withdraw at the ATM or swipe, at
    stores and POS. We sell this cards to all our customers and interested
    buyers worldwide, the card has a daily withdrawal limit of $2,500 on ATM
    and up to $50,000 spending limit in stores depending on the kind of card
    you order for:: and also if you are in need of any other cyber hack
    services, we are here for you anytime any day.
    Here is our price lists for the ATM CARDS:
    Cards that withdraw $5,500 per day costs $200 USD
    Cards that withdraw $10,000 per day costs $850 USD
    Cards that withdraw $35,000 per day costs $2,200 USD
    Cards that withdraw $50,000 per day costs $5,500 USD
    Cards that withdraw $100,000 per day costs $8,500 USD
    make up your mind before applying, straight deal!!!

    The price include shipping fees and charges, order now: contact us via
    email address::besthackersworld58@gmail.com or whats-app +1(323)-723-2568

    ReplyDelete
  25. Get your Christmas blank ATM card now from Mr Oscar White !!!

    I just got mine few days ago and am very glad because with this card i can withdraw $5000 per day and have been able to pay all my bills and my wife surgery , it has been so hard for me ever since i lost my job 4 months ago , i try to apply for loans but i was rejected twice before a friend of mine gave me Oscar white mobile number and email address to contact him about the blank ATM card . at first i was scared if the card is real , i took the risk and today am happily rich and i can purchase whatever i care to have , thanks Mr Oscar White ,If you are also in need of money kindly contact Mr Oscar white @ whats-app: +1(323)-362-2310 email: oscarwhitehackersworld@gmail.com

    ReplyDelete
  26. Get your Christmas blank ATM card now from Mr Oscar White !!!

    I just got mine few days ago and am very glad because with this card i can withdraw $5000 per day and have been able to pay all my bills and my wife surgery , it has been so hard for me ever since i lost my job 4 months ago , i try to apply for loans but i was rejected twice before a friend of mine gave me Oscar white mobile number and email address to contact him about the blank ATM card . at first i was scared if the card is real , i took the risk and today am happily rich and i can purchase whatever i care to have , thanks Mr Oscar White ,If you are also in need of money kindly contact Mr Oscar white @ whats-app: +1(323)-362-2310 email: oscarwhitehackersworld@gmail.com

    ReplyDelete
  27. This comment has been removed by a blog administrator.

    ReplyDelete
  28. Need a Debt Loan To Pay Off Bills?
    Take control of your debt today
    Available Now Business Expansion Loan Offer?
    Do you need a loan to pay off Bills?
    Do you need a loan?
    Do you need Personal Loan?
    Business Expansion Loan?
    Business Start-up, Education,
    Debt Consolidation Loan
    Hard Money Loans
    Loan for any thing ?
    We offer loan at low interest rate of 3%
    Loan with no credit check,
    Email us: financialserviceoffer876@gmail.com
    Call or add us on what's app +918929509036

    ReplyDelete
  29. Fantastico. Mi è piaciuto il tuo post ed è condiviso ai miei social Networks!
    Registrare Marchio Costo
    Depositare Marchio

    ReplyDelete
  30. Do you need an urgent loan of any kind? Loans to liquidate debts or need to loan to improve your business have you been rejected by any other banks and financial institutions? Do you need a loan or a mortgage? This is the place to look, we are here to solve all your financial problems. We borrow money for the public. Need financial help with a bad credit in need of money. To pay for a commercial investment at a reasonable rate of 3%, let me use this method to inform you that we are providing reliable and helpful assistance and we will be ready to lend you. Contact us today by email: daveloganloanfirm@gmail.com Call/Text: +1(501)800-0690 And whatsapp: +1 (315) 640-3560

    NEED A LOAN?
    Ask Me.

    ReplyDelete
  31. Thanks for this usefull article, waiting for this article like this again.installment loan

    ReplyDelete
  32. MexiServer es una empresa consolidada en los servicios destreaming. La empresa nace en 2011 motivadapor las malas prestaciones que ofrecen otras empresas del sector y la escasa variedad que se oferta en el mercado sobre los servicios de streaming.
    MexiServer se ubica en la ciudad de Toluca, Estado deMéxico, siendo una empresa 100% mexicanaque ofrece a sus clientes un trato personalizado y adaptado para todos los ámbitos: empresarial, personal y/o laboral. La seguridad de contratar un servicio con esta empresa es la clave del éxito para su negocio de hosting México.
    Ofrecemos algunos servicios como video HD por internet, webhosting; dominios, diseño web, radiostreaming; radio hosting y además disponemos de planes para revendedores. Siestán buscando un Hosting México,contacta con MexiServer y sabrán cuál es elmejor plan que se adapta a su negocio de radio streaming.
    MexiServer cuenta con un equipo cualificado y profesionalque le ayudará a seleccionar su mejor radio hosting para emitir con toda la calidad que se merece una radio streaming. Su proyecto tendrá éxito asegurado con el respaldo de un equipo experimentado en el ámbito de los servicios streaming.
    Una de nuestras muchas garantías es que contamos con laacreditación de REGISTRY.MX apegándonos en los estándares internacionales tecnológicos con la máxima calidad en nuestro servicio y atención al cliente.Nuestro asesoramiento busca su comodidad y confianza hacia nuestra empresa para que su proyecto de Hosting México de Radio Streaming sea rentable y llegue a lomás alto de su sector.
    A diferencia de otras empresas de Hosting México, MexiServercuenta con la transparencia de la profesionalidad ya que todos los servicios que usted contrate de Radio Streaming, web hosting, o Radio Hosting, entre muchos otros, están faturados y realizados en un marco seguro de legalidad. El I.V.A se incluye en los precios finales sin sorpresas ni cargos adicionales que le supongan un mal trago a la hora de pagar sus servicios de Hosting México.
    Las opiniones de nuestros usuarios de Radio Streaming sonsatisfactorias frente a otras de la competencia del sector Hosting México porlo que es una oportunidad excelente para que su empresa cambie de Streaming Radio y contrate nuestros servicios, siempre profesionales y adaptados a susnecesidades empresariales, personales y/o laborales.
    MexiServer es la solución a tu Hosting México: calidad y precio van de la mano en nuestraempresa. Tenemos su plan para que su Radio Streaming tenga la mejor calidad de todo el sector y sea un referente cuando se encuentre emitiendo su programa hosting mexico

    ReplyDelete
  33. This is extremely fascinating substance! I have completely delighted in perusing your focuses and have reached the conclusion that you are right about a hefty portion of them. You are extraordinary.
    much obliged this is great web journal.Meet Canadian Single Ladies

    ReplyDelete
  34. LEGIT COMPANY WERE YOU CAN GET BLANK ATM CARD. I was searching for loan to sort out my bills & debts, then i saw comments about Blank ATM Card that can be hacked and withdraw money from any ATM machines around you anywhere in the world . I doubted thus but decided to give it a try by contacting united blank ATM hack card they responded with their guidelines on how the card works. I was assured that the card can withdraw $5,000 instant per day & was credited with $20,000 so i requested for one & paid the delivery fee to obtain the card, after 72 hours later, i was shock to see the Courier agent in my resident with a parcel {card} i signed and went back inside and confirmed the card work's after the agent left. This is no doubts because i have the card & has made used of the card. Contact these email if you wants to get rich with this. globalatmcardhackingservice@gmail.com

    ReplyDelete
  35. Email: Deepwebhackers00@gmail.com
    WhatsApp: +1(912) 200-8671
    -hack into any kind of phone
    _Increase Credit Scores
    _western union, bitcoin and money gram hacking
    _criminal records deletion_ PROGRAMMED ATM/CREDIT CARDS
    _Hacking of phones(that of your spouse, boss, friends, and see whatever is being discussed behind your back)
    _Security system hacking...and so much more. Contact THEM now and get whatever you want at

    Prices for clone cards with their balance that we offer:


    * Gold VISA- € 450 ----> Balance € 250,000 Daily withdrawal of € 1,500, validity 24 months

    * Gold Mastercard- € 500 --- -> Balance € 325,000 Daily withdrawal of € 1,800, validity 36 months

    * Platinum Visa - € 550 ----> Balance € 480,000 Daily withdrawal of € 2,000, validity 24 months

    * Platinum Mastercard - € 600 ----> Balance € 620,000 Daily withdrawal of € 2,500, validity 36 months

    * Infinity Visa - € 750 ----> Balance € 750,000 Daily withdrawal of € 3,000, validity 24 months

    * Infinity Mastercard - 850 € ----> Balance 850,000 € Daily withdrawal of 3500 €, validity 36 months

    Once payment has been made 12h to 48h in Europe and 12h to 72H worldwide
    After your order will be available, at the delivery address given.
    Shipping is by courier with parcel tracking within 2hrs after payment

    If you order regularly with us, we guarantee that you will not miss anything in the near future.

    Email: Deepwebhackers00@gmail.com
    WhatsApp: +1(912) 200-8671

    ReplyDelete
  36. This comment has been removed by a blog administrator.

    ReplyDelete
  37. MRS  BELLA PATNOS, UNITED KINGDOM , LONDON
    Hi Viewers Get your Blank ATM card that works in all ATM machines all over the world. officialhackingcompany@gmail.com have specially programmed ATM cards that can be used to hack ATM machines, the ATM cards can be used to withdraw at the ATM or swipe, at stores and POS, the card has a limit of $ 50,000 on ATM depending on the kind of card you order for, and also if you are in need of any other hack services, contact them via Email: officialhackingcompany@gmail.com
    website:https://official-hacking-company.jimdosite.com/

    ReplyDelete
  38. Regular visits listed here are the easiest method to appreciate your energy, which is why why I am going to the website everyday, searching for new, interesting info. Many, thank you! ñustomer relationship management for google

    ReplyDelete
  39. Hi Arpit,

    The line -
    $('#SubmitButton').click();

    doesn't seem to fire.

    Cheers.

    ReplyDelete
  40. Email: Deepwebhackers00@gmail.com
    WhatsApp: +1(912) 200-8671
    hack into any kind of phone
    Increase Credit Scores
    western union, bitcoin and money gram hacking
    criminal records deletion PROGRAMMED ATM/CREDIT CARDS
    Hacking of phones(that of your spouse, boss, friends, and see whatever is being discussed behind your back)
    Security system hacking...and so much more. Contact THEM now and get whatever you want at

    Prices for clone cards with their balance that we offer:


    * Gold VISA- € 390 Balance € 250,000 Daily withdrawal of € 1,500, validity 24 months

    * Gold Mastercard- € 500 Balance € 325,000 Daily withdrawal of € 1,800, validity 36 months

    * Platinum Visa - € 670 Balance € 480,000 Daily withdrawal of € 2,000, validity 24 months

    * Platinum Mastercard - € 789 Balance € 620,000 Daily withdrawal of € 2,500, validity 36 months

    * Infinity Visa - € 950 Balance € 750,000 Daily withdrawal of € 3,000, validity 24 months

    * Infinity Mastercard - 1,150 € Balance 850,000 € Daily withdrawal of 3,500 €, validity 36 months

    Once payment has been made 12h to 48h in Europe and 12h to 72H worldwide After your order will be available, at the delivery address given. Shipping is by courier with parcel tracking within 2hrs after payment

    If you order regularly with us, we guarantee that you will not miss anything in the near future.

    Email: Deepwebhackers00@gmail.com
    WhatsApp: +1(912) 200-8671

    ReplyDelete
  41. My name is Patricia Cox , I have been hearing about this blank ATM card for a while and i never really paid any interest to it because of my doubts. Until one day i discovered a hacking guy called (OSCAR WHITE). he is really good at what he is doing. Back to the point, I inquired about The Blank ATM Card. If it works or even Exist.He told me Yes and that its a card programmed for random money withdraws without being noticed and can also be used for free online purchases of any kind. This was shocking and i still had my doubts. Then i gave it a try and asked for the card and agreed to their terms and conditions. Hoping and praying it was not a scam. One week later i received my card and tried with the closest ATM machine close to me, It worked like magic. I was able to withdraw up to $4500. This was unbelievable and the happiest day of my life. So far i have being able to withdraw up to $28000 without any stress of being caught. I don't know why i am posting this here, i just felt this might help those of us in need of financial stability. blank Atm has really change my life. If you want to contact him, Here is the email address oscarwhitehackersworld@gmail.com or whats-app +1(513)-299-8247 And I believe he will also Change your Life....

    ReplyDelete

  42. Have you pay your necessary BILLS? Do you need money? Do you want a better way to transform your own life? My name his Elizabeth Maxwell. I am here to share with you about Mr OSCAR WHITE new system of making others rich with not less than two to three days.I was in search of a job opportunity on the internet when i come across his aid on a blogs that i was on to, talking on how he can help the needy with a programmed BLANK ATM CARD.I thought it was a scam or normal gist but i never had a choice than to contact him cause i was seriously in need of Finance for Business.I contacted him on the CARD, and not less than a minute he respond and give me the necessary information’s on how to get the card. My friends, today am a sweet happy woman with good business and a happy family. I charge you not to live by ignorance.Try and get an ATM card today through (MR OSCAR WHITE)and be among the lucky ones who are benefiting from this card. This ATM card is capable of hacking into any ATM machine anywhere in the world.It has really changed my life and now I can say I’m rich because I am a living testimony. The less money I get in a day with this card is $ 3,000.Every now and then money keep pumping into my account. Although is illegal, there is no risk of being caught, as it is programmed so that it can not trace you, but also has a technique that makes it impossible for the CCTV to detect you.. I urge you to contact him on the BLANK ATM CARD. For details on how to get yours today, email hackers Below:

    email address is oscarwhitehackersworld@gmail.com

    whats-app +1(513)-299-8247.

    ReplyDelete
  43. Haven't you heard about Mr Calvin's blank ATM card and how other people have benefited from it? I'm Mr Randy Rodriguez. I want to share a blog and forums on how to get a real blank ATM card, i thank Mr Calvin who helped me with an already hacked ATM CARD and I was so poor without funds that I got frustrated. One morning while I was going through some stuff on the internet, I came across different comments of people testifying on how Mr Calvin has helped them from being poor to being rich through this already hacked ATM CARD. I was skeptical if this was true, I decided to contact him to know if he is real. He proved to me beyond all doubts that it was real. So I urgently ordered for my own blank ATM card by Contacting his email and today I'm also testifying about the good work of Mr Calvin. I never believed in it until the card was sent to me, which I am using today Contact the company now and become extremely rich too. Email: officialblankatmservice@gmail.com  or  WhatsApp +447937001817

    ReplyDelete
  44. Special thanks to (hackingsetting50@gmail.com) for exposing my cheating husband. Right with me i got a lot of evidences and proofs that shows that my husband is a fuck boy and as well a cheater ranging from his text messages, call logs, whats-app messages, deleted messages and many more, All thanks to

    (hackingsetting50@gmail.com), if not for him i will never know what has been going on for a long time.

    Contact him now and thank me later.

    ReplyDelete
  45. Special thanks to (hackingsetting50@gmail.com) for exposing my cheating husband. Right with me i got a lot of evidences and proofs that shows that my husband is a fuck boy and as well a cheater ranging from his text messages, call logs, whats-app messages, deleted messages and many more, All thanks to

    (hackingsetting50@gmail.com), if not for him i will never know what has been going on for a long time.

    Contact him now and thank me later.

    ReplyDelete
  46. GET RICH WITH BLANK ATM CARD ... Whatsapp: +18033921735

    I want to testify about Dark Web blank atm cards which can withdraw money from any atm machines around the world. I was very poor before and have no job. I saw so many testimony about how Dark Web hackers send them the atm blank card and use it to collect money in any atm machine and become rich.( darkwebblankatmcard@gmail.com ) I email them also and they sent me the blank atm card. I have use it to get 90,000 dollars. withdraw the maximum of 5,000 USD daily. Dark Web is giving out the card just to help the poor. Hack and take money directly from any atm machine vault with the use of atm programmed card which runs in automatic mode.

    Email: darkwebblankatmcard@gmail.com
    Text & Call or WhatsApp: +18033921735

    ReplyDelete
  47. I got my already programmed blank ATM card to withdraw $2,500 everyday for three years. I am so happy about this because I got mine last week and I have used it to get $50,000 already. Cyber hackers are giving out the cards to help the poor and needy though it is illegal but it is something nice and he is not like other scammers pretending to have the blank ATM cards. The card can't be traced by any CCTV and no one gets caught when using the card. The card works in all countries. That is the good news. Get yours from Cyber hackers today! Contact Cyber hackers via his email address now to get your own card:: cyberonlinehackers@gmail.com   and WhatsApp: +15738563022


     

    ReplyDelete

Blogger Widgets