ImGui::Text("User info:");
ImGui::NewLine();
ImGui::Text("License status:"); ImGui::SameLine();
if (licactive == true) { ImGui::TextColored(ImColor(40, 255, 40, 255), "Activated"); }
else { ImGui::TextColored(ImColor(255, 40, 40, 255), "Not Activated"); }
ImGui::Text("Serial key:"); ImGui::SameLine();
ImGui::TextColored(ImColor(40, 255, 40, 255), ser.c_str());
ImGui::Text("Days left:"); ImGui::SameLine();
if (anynumb <= 0) { ImGui::TextColored(ImColor(255, 40, 40, 255), "0"); }
else { ImGui::TextColored(ImColor(40, 255, 40, 255), days.c_str()); }