Skip to content
Snippets Groups Projects
verify.php 228 B
Newer Older
Karthick  Eswaran's avatar
Karthick Eswaran committed
<?php

require 'restapi/lib/includes/Signup.class.php';


    $token = $_GET['token'];

    if(Signup::verifyAccount($token))
    {
        ?> <h1>Verfied</h1>
        <?php
    }else{
        ?><h1>Not Verfied</h1> <?php
    }